summaryrefslogtreecommitdiff
path: root/giteval
diff options
context:
space:
mode:
Diffstat (limited to 'giteval')
-rwxr-xr-xgiteval8
1 files changed, 4 insertions, 4 deletions
diff --git a/giteval b/giteval
index c4e8d08..48d35a8 100755
--- a/giteval
+++ b/giteval
@@ -3,13 +3,13 @@
b=$(git branch --show-current 2> /dev/null) && {
case $(env - git status --no-ahead-behind | tail -n1) in
'nothing to commit'*)
- printf "\e[32m[$b]\e[0m"
+ printf '\[\e[32m\][%s]\[\e[0m\]' "$b"
;; 'no changes added to commit'*)
- printf "\e[33m[$b]\e[0m"
+ printf '\[\e[33m\][%s]\[\e[0m\]' "$b"
;; 'nothing added to commit'*)
- printf "\e[36m[$b]\e[0m"
+ printf '\[\e[36m\][%s]\[\e[0m\]' "$b"
;; *)
- printf "\e[31m[$b]\e[0m"
+ printf '\[\e[31m\][%s]\[\e[0m\]' "$b"
esac
}
echo