diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ var configSave bool func main() { me = new(mainType) - me.argv = argvpb.Autocomplete(&argv) // adds shell auto complete to go-args + argvpb.Init(&argv, APPNAME, BUILDTIME, VERSION) // adds shell auto-complete me.forge, _ = forgepb.Init() // figure out what directory we are running in @@ -34,7 +34,7 @@ func main() { badExit(nil, nil) } log.Info("todo: check return values here in go-mod-clean") - me.argv.GoodExit("may have worked somewhat") // exits back to the shell via argv (with timing) + argvpb.GoodExit("may have worked somewhat") // exits back to the shell via argv (with timing) } // deletes all the git notes |
