mirror of https://github.com/docker/cli.git
Merge pull request #254 from albers/completion-system-prune--volumes
Add bash completion for `system prune --volumes`
This commit is contained in:
commit
495ab9b3e9
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue