save the config after changes

This commit is contained in:
Jeff Carr 2024-12-17 00:20:57 -06:00
parent be3841578c
commit a71305ea52
1 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,9 @@ import (
func okExit(thing string) { func okExit(thing string) {
log.Info(thing, "ok") log.Info(thing, "ok")
if configSave {
me.forge.ConfigSave()
}
// log.Info("Finished go-clean on", check.GetGoPath(), "ok") // log.Info("Finished go-clean on", check.GetGoPath(), "ok")
os.Exit(0) os.Exit(0)
} }