Add -f flag to bash completion for docker-compose rm

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2015-03-02 18:33:34 +01:00
parent d5fcb0de67
commit ac7a97f420
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ _docker-compose_restart() {
_docker-compose_rm() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--force -v" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--force -f -v" -- "$cur" ) )
;;
*)
__docker-compose_services_stopped