From 8e3ba898d56f6058346d47388adf74a999c823d7 Mon Sep 17 00:00:00 2001 From: Bo-Chun Chen <louistw@uab.edu> Date: Mon, 5 Feb 2024 20:11:43 -0600 Subject: [PATCH] Fix typo --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a0e00f8..6205714 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,7 +27,7 @@ build-job: # This job runs in the build stage, which runs first. - build script: - | - if [ "$DEBUG" = true ]; do + if [ "$DEBUG" = true ]; then set -x fi - echo "Compiling the code..." @@ -37,7 +37,7 @@ build-job: # This job runs in the build stage, which runs first. echo line2 echo line3 - | - if [ "$DEBUG" = true ]; do + if [ "$DEBUG" = true ]; then set +x fi -- GitLab