From a71305ea52b931c189076e11a4526848bf822c15 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 17 Dec 2024 00:20:57 -0600 Subject: [PATCH] save the config after changes --- exit.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/exit.go b/exit.go index 7b8b027..487d8fe 100644 --- a/exit.go +++ b/exit.go @@ -8,6 +8,9 @@ import ( func okExit(thing string) { log.Info(thing, "ok") + if configSave { + me.forge.ConfigSave() + } // log.Info("Finished go-clean on", check.GetGoPath(), "ok") os.Exit(0) }