diff --git a/completion/bash/toolbox b/completion/bash/toolbox index e5bbcec..ba49a0a 100644 --- a/completion/bash/toolbox +++ b/completion/bash/toolbox @@ -13,8 +13,7 @@ __toolbox() { local MIN_VERSION=29 local RAWHIDE_VERSION=32 - local verbose_commands="create enter help init-container list run" - local commands="$verbose_commands rm rmi" + local commands="create enter help init-container list rm rmi run" declare -A options local options=([create]="--candidate-registry --container --image --release" \ @@ -34,8 +33,7 @@ __toolbox() { fi case "$prev" in - --verbose) - mapfile -t COMPREPLY < <(compgen -W "$verbose_commands" -- "$2") + mapfile -t COMPREPLY < <(compgen -W "$commands" -- "$2") return 0 ;; --container)