diff options
author | Matthew Hillman <mhillman@bomgar.com> | 2015-11-06 09:39:51 -0600 |
---|---|---|
committer | Matthew Hillman <mhillman@bomgar.com> | 2015-11-06 09:39:51 -0600 |
commit | 8b1ffb6f7fb99865a9aadc9afbe9acb6977c5b3c (patch) | |
tree | 7be19b90568b31dc325987f6cb2e3367dd2bd68b | |
parent | f359285965f67c679c83b6c2b7128d713c9b3ca9 (diff) | |
download | git-sonar-8b1ffb6f7fb99865a9aadc9afbe9acb6977c5b3c.tar.gz git-sonar-8b1ffb6f7fb99865a9aadc9afbe9acb6977c5b3c.zip |
Fix for bad characters showing in the stash status in OS X
-rwxr-xr-x | radar-base.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/radar-base.sh b/radar-base.sh index 517a6ce..f45669e 100755 --- a/radar-base.sh +++ b/radar-base.sh @@ -539,7 +539,7 @@ stashed_status() { stash_status() { local number_stashes="$(stashed_status)" if [ $number_stashes -gt 0 ]; then - printf $PRINT_F_OPTION "$number_stashes$COLOR_STASH≡$RESET_COLOR_STASH" + printf $PRINT_F_OPTION "$number_stashes${COLOR_STASH}≡$RESET_COLOR_STASH" fi } |