Skip to content

Commit c5a3b67

Browse files
committed
(bootstrap) no escaping needed in echo's
1 parent a0cdace commit c5a3b67

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

installer/bootstrap.bash

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -175,19 +175,19 @@ function main
175175
then
176176
if [[ -n "${BRANCH}" ]]
177177
then
178-
echo -e "[tue-env](bootstrap) Cloning tue-env repository with branch: ${BRANCH} at commit: ${COMMIT}"
178+
echo "[tue-env](bootstrap) Cloning tue-env repository with branch: ${BRANCH} at commit: ${COMMIT}"
179179
git clone -q --single-branch --branch "${BRANCH}" "${env_url}" "${env_dir}"
180180
else
181-
echo -e "[tue-env](bootstrap) Cloning tue-env repository with default branch at commit: ${COMMIT}"
181+
echo "[tue-env](bootstrap) Cloning tue-env repository with default branch at commit: ${COMMIT}"
182182
git clone -q --single-branch "${env_url}" "${env_dir}"
183183
fi
184184
git -C "${env_dir}" reset --hard "${COMMIT}"
185185
else
186-
echo -e "[tue-env](bootstrap) Error! CI branch or commit is unset"
186+
echo "[tue-env](bootstrap) Error! CI branch or commit is unset"
187187
return 1
188188
fi
189189
else
190-
echo -e "[tue-env](bootstrap) Testing Pull Request"
190+
echo "[tue-env](bootstrap) Testing Pull Request"
191191
[[ -z "${REF_NAME}" ]] && { echo "[tue-env](bootstrap) Error! Environment variable REF_NAME is not set."; return 1; }
192192

193193
git clone -q --depth=10 "${env_url}" "${env_dir}"
@@ -196,7 +196,7 @@ function main
196196
fi
197197
else
198198
# Update installer
199-
echo -e "[tue-env](bootstrap) Cloning tue-env repository"
199+
echo "[tue-env](bootstrap) Cloning tue-env repository"
200200
git clone "${env_url}" "${env_dir}"
201201
fi
202202

0 commit comments

Comments
 (0)