From fc8a572f15cfb275e6781a5f1355845ef212d23a Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 27 Oct 2025 01:36:08 -0500 Subject: minor --- complete.go | 2 +- structs.go | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/complete.go b/complete.go index a8727c6..d18c642 100644 --- a/complete.go +++ b/complete.go @@ -53,7 +53,7 @@ func (args) ArgvGui() error { func (a args) DoAutoComplete() error { base := []string{"build", "upgrade", "git", "publish", "pb", "linux", "droplet", "test"} - base = append(base, "--version", "--force", "--all", "--dry-run") + base = append(base, "--version", "--force", "--all", "--dry-run", "--verbose") // add these only if installed if _, err := fhelp.CheckCmd("zood"); err == nil { diff --git a/structs.go b/structs.go index 93e0c4c..62fb875 100644 --- a/structs.go +++ b/structs.go @@ -38,7 +38,9 @@ func initForge() { } me.forge.RescanRepos() } - env.PrintTable() + if env.Verbose() { + env.PrintTable() + } initMachine() } -- cgit v1.2.3