summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-27 01:36:08 -0500
committerJeff Carr <[email protected]>2025-10-27 01:36:08 -0500
commitfc8a572f15cfb275e6781a5f1355845ef212d23a (patch)
treede0a385eb5166904f03dd70aa3e246aae8381ba8
parent6b70cc1f09163a455a8b85047bf393ea201b46c7 (diff)
minor
-rw-r--r--complete.go2
-rw-r--r--structs.go4
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()
}