Merge pull request #254 from albers/completion-system-prune--volumes

Add bash completion for `system prune --volumes`
This commit is contained in:
Sebastiaan van Stijn 2017-06-30 01:01:14 -07:00 committed by GitHub
commit 495ab9b3e9
1 changed files with 1 additions and 1 deletions

View File

@ -4323,7 +4323,7 @@ _docker_system_prune() {
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "--all -a --force -f --filter --help" -- "$cur" ) ) COMPREPLY=( $( compgen -W "--all -a --force -f --filter --help --volumes" -- "$cur" ) )
;; ;;
esac esac
} }