diff options
author | Michael Allen <michael@michaelallen.io> | 2015-11-10 12:10:09 +0000 |
---|---|---|
committer | Michael Allen <michael@michaelallen.io> | 2015-11-10 12:10:09 +0000 |
commit | 3a47557bdd10f3a025c7e3385e16a566570abcf1 (patch) | |
tree | 57f4621afb42fc51b3bfac1f761a5e5d1597d707 | |
parent | f359285965f67c679c83b6c2b7128d713c9b3ca9 (diff) | |
parent | 22144d3c227adba425f822700dc2559301ebdeb2 (diff) | |
download | git-sonar-3a47557bdd10f3a025c7e3385e16a566570abcf1.tar.gz git-sonar-3a47557bdd10f3a025c7e3385e16a566570abcf1.zip |
Merge pull request #90 from matthillman/osx_stash_fixv0.6
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..f4bbc13 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 } |