diff options
author | Michael Allen <michael@michaelallen.io> | 2015-08-30 19:22:13 +0100 |
---|---|---|
committer | Michael Allen <michael@michaelallen.io> | 2015-08-30 19:22:13 +0100 |
commit | c2dbe6f579bac9b40482970287e6a58783994257 (patch) | |
tree | 0dfa10f2359508308dad5fb7272573753f53efee /radar-base.sh | |
parent | 4cc2298359b8e2ac4fb0c3a4f061737551e5bb1e (diff) | |
download | git-sonar-c2dbe6f579bac9b40482970287e6a58783994257.tar.gz git-sonar-c2dbe6f579bac9b40482970287e6a58783994257.zip |
Test zsh local commit colors
Diffstat (limited to 'radar-base.sh')
-rwxr-xr-x | radar-base.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/radar-base.sh b/radar-base.sh index b2ecd38..63a18c9 100755 --- a/radar-base.sh +++ b/radar-base.sh @@ -430,9 +430,9 @@ bash_color_local_commits() { zsh_color_local_commits() { local separator="${1:- }" - local ahead_arrow="$COLOR_LOCAL_AHEAD↑$RESET_COLOR_LOCAL" - local behind_arrow="$COLOR_LOCAL_BEHIND↓$RESET_COLOR_LOCAL" - local diverged_arrow="$COLOR_LOCAL_DIVERGED⇵$RESET_COLOR_LOCAL" + local ahead_arrow="${COLOR_LOCAL_AHEAD}↑$RESET_COLOR_LOCAL" + local behind_arrow="${COLOR_LOCAL_BEHIND}↓$RESET_COLOR_LOCAL" + local diverged_arrow="${COLOR_LOCAL_DIVERGED}⇵$RESET_COLOR_LOCAL" local local_commits="" if remote_branch="$(remote_branch_name)"; then |