Fixed output of mercurial#parse_hg_dirty

This commit is contained in:
Lucas Sampaio 2012-10-06 09:10:08 -03:00
commit 2617b627d2

View file

@ -19,12 +19,11 @@ function hg_current_branch() {
fi
}
parse_hg_dirty() {
hg status 2> /dev/null \
| awk '$1 == "?" { unknown = 1 }
$1 != "?" { changed = 1 }
END {
if (changed) printf "$ZSH_THEME_GIT_PROMPT_DIRTY"
else if (unknown) printf "$ZSH_THEME_GIT_PROMPT_CLEAN"
}'
function parse_hg_dirty() {
local num_status=$(hg status | wc -l)
if [ $num_status -eq 0 ]; then
echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
else
echo "$ZSH_THEME_GIT_PROMPT_DIRTY"
fi
}