diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-02-23 14:54:09 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-26 15:10:09 -0500 |
commit | 43b13ed33f50274383a8dce11cbd7c77b8e851d5 (patch) | |
tree | ec9c2dc00a8821674e88609f81ba96deead24d6d /.gitlab | |
parent | 273e60dee183707315415799ae3ed08079ab9ee9 (diff) | |
download | haskell-43b13ed33f50274383a8dce11cbd7c77b8e851d5.tar.gz |
gitlab-ci: Fix colors on Darwin
Darwin sh doesn't support \e.
Diffstat (limited to '.gitlab')
-rwxr-xr-x | .gitlab/ci.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab/ci.sh b/.gitlab/ci.sh index 7df32b3e35..6c9b664a21 100755 --- a/.gitlab/ci.sh +++ b/.gitlab/ci.sh @@ -41,7 +41,7 @@ end_section() { echo_color() { local color="$1" local msg="$2" - echo -e "\e[${color}m${msg}\e[0m" + echo -e "\033[${color}m${msg}\033[0m" } error() { echo_color "${RED}" "$1"; } |