mirror of https://github.com/ohmyzsh/ohmyzsh.git
git: fix parse_git_dirty()
If oh-my-zsh.hide-status is configured, the 'clean' code won't be generated, and some themes might end up distorted. Let's generate the 'clean' code even when we don't want the show the dirty status. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>pull/1740/head
parent
85426a57a2
commit
d615f64374
|
@ -21,6 +21,8 @@ parse_git_dirty() {
|
|||
else
|
||||
echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
|
||||
fi
|
||||
else
|
||||
echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue