and exit for real this time.
This commit is contained in:
parent
2221e362a8
commit
05b0ea1ef7
|
@ -1,6 +1,8 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"os"
|
||||||
|
|
||||||
"go.wit.com/lib/gadgets"
|
"go.wit.com/lib/gadgets"
|
||||||
"go.wit.com/lib/gui/repolist"
|
"go.wit.com/lib/gui/repolist"
|
||||||
"go.wit.com/lib/gui/shell"
|
"go.wit.com/lib/gui/shell"
|
||||||
|
@ -185,10 +187,11 @@ func (r *repoWindow) mergeAllDevelToMain() bool {
|
||||||
repo.NewScan()
|
repo.NewScan()
|
||||||
}
|
}
|
||||||
log.Warn("EVERYTHING WORKED. with merge to master")
|
log.Warn("EVERYTHING WORKED. with merge to master")
|
||||||
cmd := []string{"forge", "user"}
|
cmd := []string{"forge", "master"}
|
||||||
shell.Run(cmd)
|
shell.Run(cmd)
|
||||||
cmd = []string{"forge", "list"}
|
cmd = []string{"forge", "list"}
|
||||||
shell.Run(cmd)
|
shell.Run(cmd)
|
||||||
|
os.Exit(0)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue