diff options
Diffstat (limited to 'exit.go')
| -rw-r--r-- | exit.go | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -6,18 +6,19 @@ package main import ( "os" + "go.wit.com/gui" "go.wit.com/lib/protobuf/gitpb" "go.wit.com/log" ) func okExit(thing string) { - if thing != "" { - log.Info("forge exit:", thing, "ok") - } + gui.UnloadToolkits() if configSave { me.forge.SetConfigSave(configSave) } - // log.Info("Finished go-clean on", check.GetGoPath(), "ok") + if thing != "" { + log.Info("forge exit:", thing, "ok") + } me.forge.Exit() } |
