Skip to content
Snippets Groups Projects
Commit 94a37154 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix non-GH-Actions begin/end markers

parent 4bb3ae76
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment