diff options
author | Michael Allen <michael@michaelallen.io> | 2015-09-05 10:33:28 +0100 |
---|---|---|
committer | Michael Allen <michael@michaelallen.io> | 2015-09-05 10:33:53 +0100 |
commit | f2f8fe92cea4ab6ab8a82cdf4863b1dc6e6e2471 (patch) | |
tree | 7012bb0f9ff510733ca15d66c9c1957a8eb47586 | |
parent | a6c7770c2456747d3f06102d0dad2cbbf0f81542 (diff) | |
download | git-sonar-f2f8fe92cea4ab6ab8a82cdf4863b1dc6e6e2471.tar.gz git-sonar-f2f8fe92cea4ab6ab8a82cdf4863b1dc6e6e2471.zip |
Fix mistaken colour output on bash
Diffstat (limited to '')
-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 25a4113..c793eab 100755 --- a/radar-base.sh +++ b/radar-base.sh @@ -182,7 +182,7 @@ branch_ref() { readable_branch_name() { if is_repo; then - printf '%s' "$COLOR_BRANCH$(branch_name || printf '%s' "detached@$(commit_short_sha)")$RESET_COLOR_BRANCH" + printf "$COLOR_BRANCH$(branch_name || printf '%s' "detached@$(commit_short_sha)")$RESET_COLOR_BRANCH" fi } |