diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -30,6 +30,7 @@ func doCoreChecks() { // log.Info("things are still normal") } else { log.Info("doNormalStatus() failed. things are not normal anymore") + me.forge.SetUserMode() } } else { if !me.forge.IsModeNormal() { @@ -56,7 +57,8 @@ func main() { } if me.forge.IsModeUnknown() || me.forge.IsModeNewUser() { - doNewUser() + panic("always gets here") + // doNewUser() } // put things to do every time forge runs here @@ -72,7 +74,7 @@ func main() { argvpb.GoodExit(s) } - log.Info("Starting forge with subcommand:", argvpb.GetCmd()) + log.Info("Starting forge with subcommand:", argvpb.Real()) s, err = doSubcommand() // if the gui starts, it doesn't yet go to the end normally |
