summaryrefslogtreecommitdiff
path: root/.gitlab
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2020-02-23 14:54:09 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-02-26 15:10:09 -0500
commit43b13ed33f50274383a8dce11cbd7c77b8e851d5 (patch)
treeec9c2dc00a8821674e88609f81ba96deead24d6d /.gitlab
parent273e60dee183707315415799ae3ed08079ab9ee9 (diff)
downloadhaskell-43b13ed33f50274383a8dce11cbd7c77b8e851d5.tar.gz
gitlab-ci: Fix colors on Darwin
Darwin sh doesn't support \e.
Diffstat (limited to '.gitlab')
-rwxr-xr-x.gitlab/ci.sh2
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"; }