Skip to content

Commit

Permalink
Fix non-GH-Actions begin/end markers
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Mar 5, 2025
1 parent 4bb3ae7 commit 94a3715
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci-support.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand All @@ -77,7 +77,7 @@ end_output_group()
echo "::endgroup::$1"
else
echo "END $1"
echo "\\------------------------------------------------------------"
echo '\\------------------------------------------------------------'
fi
}

Expand Down

0 comments on commit 94a3715

Please sign in to comment.