diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-03-04 09:12:58 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-03-04 09:12:58 +0100 |
commit | 22fed4fbcbf4d6f702b06a1fcb30df37594cf88a (patch) | |
tree | 4a312862548dc0c913b2e9b38871fc3e3f0b1777 /plugins | |
parent | 314dd205ca6070527a4bef791221755920858bd3 (diff) | |
download | zsh-22fed4fbcbf4d6f702b06a1fcb30df37594cf88a.tar.gz zsh-22fed4fbcbf4d6f702b06a1fcb30df37594cf88a.tar.bz2 zsh-22fed4fbcbf4d6f702b06a1fcb30df37594cf88a.zip |
knife: fix refactor mistake
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/knife/_knife | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/knife/_knife b/plugins/knife/_knife index 38f8ad6fa..09757ebaa 100644 --- a/plugins/knife/_knife +++ b/plugins/knife/_knife @@ -106,10 +106,10 @@ _knife() { compadd -Q "$@" show edit list "from file" create delete ;; bootstrap|clean|cook|prepare) - compadd "$@" nodes/*.json(N:t:r); done + compadd "$@" nodes/*.json(N:t:r) ;; init) - compadd "$@" ./*(/N:t); done + compadd "$@" ./*(/N:t) ;; *) _arguments '3:Subsubcommands:($(_knife_options2))' |