and exit for real this time.

This commit is contained in:
Jeff Carr 2024-12-30 05:54:24 -06:00
parent 2221e362a8
commit 05b0ea1ef7
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,8 @@
package main
import (
"os"
"go.wit.com/lib/gadgets"
"go.wit.com/lib/gui/repolist"
"go.wit.com/lib/gui/shell"
@ -185,10 +187,11 @@ func (r *repoWindow) mergeAllDevelToMain() bool {
repo.NewScan()
}
log.Warn("EVERYTHING WORKED. with merge to master")
cmd := []string{"forge", "user"}
cmd := []string{"forge", "master"}
shell.Run(cmd)
cmd = []string{"forge", "list"}
shell.Run(cmd)
os.Exit(0)
return true
}