From 899d6c74f97c8a8312d255f59dc24db03f07968a Mon Sep 17 00:00:00 2001 From: Max Regan Date: Wed, 23 Mar 2022 15:11:12 -0700 Subject: [PATCH] Fix gitlab section logs --- .mgr_config/tests/gitlab-utils.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.mgr_config/tests/gitlab-utils.sh b/.mgr_config/tests/gitlab-utils.sh index 2016dac..e866ee0 100644 --- a/.mgr_config/tests/gitlab-utils.sh +++ b/.mgr_config/tests/gitlab-utils.sh @@ -1,10 +1,10 @@ gitlab_start_log_section() { NAME="$1" - HEADER="2" + HEADER="$2" echo -e "\e[0Ksection_start:`date +%s`:${NAME}\r\e[0K${HEADER}" } gitlab_end_log_section() { NAME="$1" - echo -e "\e[0Ksection_start:`date +%s`:${NAME}\r\e[0K${HEADER}" + echo -e "\e[0Ksection_end:`date +%s`:${NAME}\r\e0K" }