Fixed output in hg_current_branch function

This commit is contained in:
Lucas Sampaio 2012-10-05 22:52:01 -03:00
commit 858bea86a5

View file

@ -15,6 +15,6 @@ alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip'
function hg_current_branch() {
if [ -d .hg ]; then
echo hg:$(hg branch)
echo $(hg branch)
fi
}