summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/argv.go b/argv.go
index 44ea8f9..1da268c 100644
--- a/argv.go
+++ b/argv.go
@@ -34,6 +34,7 @@ type args struct {
Install bool `arg:"--install" help:"go install the binaries first"`
Verbose bool `arg:"--verbose" help:"be loud about it"`
Force bool `arg:"--force" help:"rebuild everything"`
+ All bool `arg:"--all" help:"show everything"`
Recursive bool `arg:"--recursive" help:"go-clone --recursive"`
WITCOM bool `arg:"--witcom" help:"add the GPL header"`
Max int32 `arg:"--max" help:"stop building after max builds"`
@@ -126,7 +127,7 @@ func (args) Appname() string {
}
func (a args) DoAutoComplete(pb *prep.Auto) {
- base := []string{"--version", "build", "upgrade", "git", "publish", "--force"}
+ base := []string{"--version", "build", "upgrade", "git", "publish", "--force", "--all"}
if _, err := fhelp.CheckCmd("zood"); err == nil {
base = append(base, "zoo")
}