[git] Update git-branch-delete-interactive

so we don't suggest deleting remote branches when `git rev-parse`
failed. For example, it could fail if a remote tracking branch is gone.
This commit is contained in:
Eric Nielsen 2018-04-25 19:20:51 -05:00
parent d371d80af2
commit f11bb607c5
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ local -a remotes
if (( ${*[(I)(-r|--remotes)]} )); then
remotes=(${^*:#-*})
else
remotes=(${(f)"$(command git rev-parse --abbrev-ref ${^*:#-*}@{u} 2>/dev/null)"})
remotes=(${(f)"$(command git rev-parse --abbrev-ref ${^*:#-*}@{u} 2>/dev/null)"}) || remotes=()
fi
if command git branch --delete ${@} && \
(( ${#remotes[@]} )) && \