Commit 147f1dc7 authored by Toon Claes's avatar Toon Claes
Browse files

Modifying changes for issue 25, to fix issue 27

parent 729fd0ab
......@@ -5,7 +5,7 @@ function git_prompt_info() {
}
parse_git_dirty () {
if [[ $((git status &> /dev/null) | tail -n1) != "nothing to commit (working directory clean)" ]]; then
if [[ $((git status 2> /dev/null) | tail -n1) != "nothing to commit (working directory clean)" ]]; then
echo "$ZSH_THEME_GIT_PROMPT_DIRTY"
else
echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment