From 94a37154a26d93a96bb4e75b396326e78c7b538a Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Wed, 5 Mar 2025 10:57:17 -0600 Subject: [PATCH] Fix non-GH-Actions begin/end markers --- ci-support.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-support.sh b/ci-support.sh index 7b84a01..a74b088 100644 --- a/ci-support.sh +++ b/ci-support.sh @@ -63,7 +63,7 @@ begin_output_group() if [[ $GITHUB_ACTIONS == "true" ]] && [[ $GROUP_NEST_LEVEL == 0 ]]; then echo "::group::$1" else - echo "//------------------------------------------------------------" + echo '//------------------------------------------------------------' echo "BEGIN $1" fi GROUP_NEST_LEVEL=$((GROUP_NEST_LEVEL + 1)) @@ -77,7 +77,7 @@ end_output_group() echo "::endgroup::$1" else echo "END $1" - echo "\\------------------------------------------------------------" + echo '\\------------------------------------------------------------' fi } -- GitLab