mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
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_rm() {
|
||||||
_docker_network_inspect
|
case "$cur" in
|
||||||
|
-*)
|
||||||
|
COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
__docker_complete_networks
|
||||||
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
_docker_network() {
|
_docker_network() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue