diff options
| -rw-r--r-- | doNewUser.go | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/doNewUser.go b/doNewUser.go index 16adc5c..9820ac4 100644 --- a/doNewUser.go +++ b/doNewUser.go @@ -26,11 +26,8 @@ func doNewUser() (string, error) { if me.forge.Config.Mode == forgepb.ForgeMode_UNKNOWN { // this should never happen log.Info("You are a new user and we never introduced ourselves") - if fhelp.QuestionUser("build goimports?") { - log.Info("just a test") - } - if fhelp.QuestionUser("forge will not look for git repos in ~/go/src") { - log.Info("ok, we will continue") + if fhelp.QuestionUser("forge will scan ~/go/src for git repos") { + log.Info("continue") } } else { log.Info("MODE NOT UNKNOWN") |
