bash completion for docker network inspect supports multiple networks

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers
2017-06-02 00:07:14 +00:00
committed by Tibor Vass
parent 428a089858
commit b20b7584de
+1 -5
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
}