diff options
| author | Jeff Carr <[email protected]> | 2024-11-16 00:05:07 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-16 00:05:07 -0600 |
| commit | 350d5e58601320d44c779412a6a3018660f28d34 (patch) | |
| tree | 363aa0a700e39a0524100fbf52a51f67e999ef59 /main.go | |
| parent | ff564380a71b607821de4eca4afa0865f3c7e51c (diff) | |
fix makefilev0.22.10
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -35,10 +35,10 @@ func main() { os.Exit(0) } myGui = gui.New() - if !argv.NoGui { + if !argv.Auto { myGui.InitEmbed(resources) - myGui.Default() } + myGui.Default() basicWindow = makebasicWindow() @@ -72,7 +72,7 @@ func main() { log.Info("cd", cBox.status.Path()) os.Chdir(cBox.status.Path()) - if argv.NoGui { + if argv.Auto { shell.TestTerminalColor() // basicWindow.Show() // broken gui package. convert to protobuf if ok, err := cBox.buildPackage(); ok { |
