fix autocomplete 'upgrade'

This commit is contained in:
Jeff Carr 2025-01-17 06:04:51 -06:00
parent 14fc461af8
commit 6e7049f4a8
1 changed files with 3 additions and 1 deletions

View File

@ -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)