summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2021-11-12 22:00:10 +0100
committerOliver Kiddle <opk@zsh.org>2021-11-12 22:00:10 +0100
commit9c515a5a2f67e39b049d50e364ebfe17e536cc23 (patch)
tree007829963a2ebc93e168debdbbd9dc892bf8cd57 /Completion
parent2fe9ab281380f56a4f492eb644da5bab2e0e7b0d (diff)
downloadzsh-9c515a5a2f67e39b049d50e364ebfe17e536cc23.tar.gz
zsh-9c515a5a2f67e39b049d50e364ebfe17e536cc23.tar.xz
zsh-9c515a5a2f67e39b049d50e364ebfe17e536cc23.zip
unposted: fix case statement fall-through for ansible-galaxy role completion
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_ansible2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_ansible b/Completion/Unix/Command/_ansible
index 6ec7d0c2e..785ae45d0 100644
--- a/Completion/Unix/Command/_ansible
+++ b/Completion/Unix/Command/_ansible
@@ -278,7 +278,7 @@ case $state in
       ;|
       role-(info|init|install|list|remove))
         args+=( '*: :_guard "^-*" "role name"' )
-      ;;
+      ;|
       role-(info|search|list|remove|install))
 	args+=( '(-p --roles-path)'{-p,--roles-path}'[specify location of roles]:path:_directories' )
       ;|