mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Improve bash completion for docker volume ls -f dangling
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
805a107df4
commit
a381efcf39
1 changed files with 2 additions and 1 deletions
|
@ -2002,7 +2002,8 @@ _docker_volume_inspect() {
|
||||||
_docker_volume_ls() {
|
_docker_volume_ls() {
|
||||||
case "$prev" in
|
case "$prev" in
|
||||||
--filter|-f)
|
--filter|-f)
|
||||||
COMPREPLY=( $( compgen -W "dangling" -- "$cur" ) )
|
COMPREPLY=( $( compgen -S = -W "dangling" -- "$cur" ) )
|
||||||
|
__docker_nospace
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue