Bash completion supports multiple stacks in stack rm

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers
2017-06-02 00:11:03 +00:00
committed by Tibor Vass
parent 279bbbab27
commit 50ea10e293
+1 -5
View File
@@ -4078,11 +4078,7 @@ _docker_stack_rm() {
COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_complete_stacks
fi
;;
__docker_complete_stacks
esac
}