remove --format
from bash completion for docker network rm
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
81c8e4d4c8
commit
f03695efc1
1 changed files with 7 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue