diff options
Diffstat (limited to '')
-rw-r--r-- | share/bash-completion/container | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index fd916d1..19a8e0f 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -278,6 +278,10 @@ _container() esac ;; + version) + return 0 + ;; + *) local commands=$(cd /usr/lib/container-tools/container 2>/dev/null && find * -type f -print) COMPREPLY=( $(compgen -W "${commands}" -- ${cur}) ) |