remove `--format` from bash completion for `docker network rm`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2015-12-22 11:35:41 -08:00
parent 81c8e4d4c8
commit f03695efc1
1 changed files with 7 additions and 1 deletions

View File

@ -1195,7 +1195,13 @@ _docker_network_ls() {
}
_docker_network_rm() {
_docker_network_inspect
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
;;
*)
__docker_complete_networks
esac
}
_docker_network() {