1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-30 02:52:12 +01:00

unposted: _git: Fix copy/paste error in earlier commit that broke git stash drop

This was broken by workers/44923 (8aa84bd5fc)

(cherry picked from commit 754658aff3)
This commit is contained in:
dana 2020-03-13 09:46:14 -05:00
parent b34d33e3b3
commit 355f9e1883
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2022-01-27 dana <dana@dana.is>
* unposted: Completion/Unix/Command/_git: Fix copy/paste error
in earlier commit that broke `git stash drop`
* Marc Cornellà: security/82 (tweaked):
Functions/VCS_Info/VCS_INFO_formats: Fix typo in
hook_com[base-name_orig] assignment

View file

@ -1809,7 +1809,7 @@ _git-stash () {
_nothing
;;
(drop)
_arguments -S $endopt \_git-notes
_arguments -S $endopt \
'(-q --quiet)'{-q,--quiet}'[suppress all output]' \
':: :__git_stashes' && ret=0
;;