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 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
} }