summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/main.go b/main.go
index 1c93050..9c266ef 100644
--- a/main.go
+++ b/main.go
@@ -64,6 +64,11 @@ func main() {
log.Info("")
log.Info(" todo: make better notes here.")
log.Info("")
+ if fhelp.QuestionUser("test question") {
+ log.Info("question true")
+ } else {
+ log.Info("question false")
+ }
me.forge.Config.Mode = forgepb.ForgeMode_MASTER
err := me.forge.ConfigSave()
if err != nil {
@@ -86,6 +91,7 @@ func main() {
}
if me.sh.Cmd == "" {
+ log.Info("forge DOING DEFAULT BEHAVIOR")
s, err := doDefaultBehavior()
if err != nil {
me.sh.BadExit(s, err)