diff options
| author | Jeff Carr <[email protected]> | 2025-01-17 06:04:51 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-17 06:04:51 -0600 |
| commit | 6e7049f4a89a679a244bbef758e4abfe04143fac (patch) | |
| tree | 5859641b272f489fb1f16c28e239823663c8dfae | |
| parent | 14fc461af8cf490d2061e96c21eadefd27db58c1 (diff) | |
fix autocomplete 'upgrade'v0.0.15
| -rw-r--r-- | argvAutocomplete.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/argvAutocomplete.go b/argvAutocomplete.go index 7c1c6d2..7c000fc 100644 --- a/argvAutocomplete.go +++ b/argvAutocomplete.go @@ -20,6 +20,8 @@ func (args) doBashAuto() { fmt.Println("--all --mine --favorites --private") case "debian": fmt.Println("--dry-run") + case "upgrade": + fmt.Println("--dry-run") case "build": fmt.Println("--verbose") case "install": @@ -29,7 +31,7 @@ func (args) doBashAuto() { default: if strings.HasSuffix(argv.BashAuto[0], ARGNAME) { // list the subcommands here - fmt.Println("--bash list build debian install repomap-clone") + fmt.Println("--bash list build debian install repomap-clone upgrade") } } os.Exit(0) |
