bash completion for `docker network inspect` supports multiple networks

Signed-off-by: Harald Albers <github@albersweb.de>
master
Harald Albers 2015-10-22 17:53:17 +02:00 committed by Tibor Vass
parent 428a089858
commit b20b7584de
1 changed files with 1 additions and 5 deletions

View File

@ -1101,11 +1101,7 @@ _docker_network_inspect() {
COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_networks
fi
;;
__docker_networks
esac
}