diff options
author | Michael Allen <michael@michaelallen.io> | 2015-08-19 12:34:09 +0100 |
---|---|---|
committer | Michael Allen <michael@michaelallen.io> | 2015-08-19 12:34:09 +0100 |
commit | 685a5471d2dc7209e16df5654ba8b05f401526ab (patch) | |
tree | fe775203db47aa7c1153e902e2056c178286885b /radar-base.sh | |
parent | 7d0e68ab04da8580cbf5617ff4491378f84befe0 (diff) | |
download | git-sonar-685a5471d2dc7209e16df5654ba8b05f401526ab.tar.gz git-sonar-685a5471d2dc7209e16df5654ba8b05f401526ab.zip |
Ensure the control characters get evaluated
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 0fee704..787d7a5 100755 --- a/radar-base.sh +++ b/radar-base.sh @@ -446,7 +446,7 @@ bash_color_remote_commits() { } zsh_color_remote_commits() { - local remote_master="\xF0\x9D\x98\xAE" # an italic m to represent master + local remote_master="$(printf '\xF0\x9D\x98\xAE')" # an italic m to represent master local green_ahead_arrow="%{$fg_bold[green]%}←%{$reset_color%}" local red_behind_arrow="%{$fg_bold[red]%}→%{$reset_color%}" local yellow_diverged_arrow="%{$fg_bold[yellow]%}⇄%{$reset_color%}" |