Skip to content

Commit

Permalink
return 0 when not a git repo
Browse files Browse the repository at this point in the history
before, 128 was returned, which could display an error,
but out of a git repo this should exit silently
fixes ohmyzsh#2226
  • Loading branch information
ncanceill authored and benjaoming committed Nov 28, 2014
1 parent ce289d0 commit 532590f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/git.zsh
Expand Up @@ -2,7 +2,7 @@
function git_prompt_info() {
if [[ "$(git config --get oh-my-zsh.hide-status)" != "1" ]]; then
ref=$(command git symbolic-ref HEAD 2> /dev/null) || \
ref=$(command git rev-parse --short HEAD 2> /dev/null) || return
ref=$(command git rev-parse --short HEAD 2> /dev/null) || return 0
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_SUFFIX"
fi
}
Expand Down

0 comments on commit 532590f

Please sign in to comment.