summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-11 15:03:44 -0500
committerJeff Carr <[email protected]>2025-09-11 15:03:44 -0500
commit127f36ca1f82ca9c1945e08802a49e4f9e30d2b7 (patch)
tree9711d08e3b5d653e95205b0f0a5c431de51bc630 /argv.go
parentb05b706d8b48a51275a8dc0c90cd8fafc74d61d1 (diff)
refactor to store info
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/argv.go b/argv.go
index 5a308c7..ef20d8e 100644
--- a/argv.go
+++ b/argv.go
@@ -49,10 +49,12 @@ func (a args) DoAutoComplete(argv []string) {
fmt.Println("riscv64")
case "build":
fmt.Println("user devel release")
+ case "--gui":
+ fmt.Println("nocui andlabs")
default:
if argv[0] == ARGNAME {
// list the subcommands here
- fmt.Println("arch build gui show")
+ fmt.Println("arch build gui show --gui")
}
}
os.Exit(0)