summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-04 01:44:07 -0500
committerJeff Carr <[email protected]>2025-10-04 01:44:07 -0500
commit5ee8c4f295205e7bfd316b43a503f1ec281a1b03 (patch)
tree6fbaeb51ea178cd1f21917ea0eaa5bd9a4dddc91
parentce0986ee472f028d16076311992a6bc3e02fb528 (diff)
don't question first time usersv0.0.162
-rw-r--r--config.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/config.go b/config.go
index 348c053..704feca 100644
--- a/config.go
+++ b/config.go
@@ -9,7 +9,6 @@ import (
"path/filepath"
"go.wit.com/lib/config"
- "go.wit.com/lib/fhelp"
"go.wit.com/lib/gui/prep"
"go.wit.com/log"
)
@@ -145,9 +144,9 @@ func loadStdConfig() *ForgeConfigs {
cfg.addSampleConfigs()
cfg.DumpENV()
config.SetChanged("forge", true)
- if !fhelp.QuestionUser("This is your first time using forge, use these default values?") {
- os.Exit(-1)
- }
+ // if !fhelp.QuestionUser("This is your first time using forge, use these default values?") {
+ // os.Exit(-1)
+ // }
if err := cfg.ConfigSave(); err != nil {
log.Info("config save error:", err)
os.Exit(-1)