remove command completion for docker-compose rm --a
As `--all|-a` is deprecated, there's no use to suggest it any more in command completion. Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
86b5ed1a84
commit
c46737ed02
2 changed files with 1 additions and 2 deletions
|
|
@ -325,7 +325,7 @@ _docker_compose_restart() {
|
|||
_docker_compose_rm() {
|
||||
case "$cur" in
|
||||
-*)
|
||||
COMPREPLY=( $( compgen -W "--all -a --force -f --help -v" -- "$cur" ) )
|
||||
COMPREPLY=( $( compgen -W "--force -f --help -v" -- "$cur" ) )
|
||||
;;
|
||||
*)
|
||||
__docker_compose_services_stopped
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue