We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69bab9b commit d0c24c2Copy full SHA for d0c24c2
1 file changed
.github/workflows/code-formatting.yml
@@ -143,10 +143,8 @@ jobs:
143
144
# Tell user what to do in case of copyright notice error
145
if [ -n "$have_err" ]; then
146
- cat << EOF >&2
147
- ::error::The files listed above are missing the correct copyright notice.
148
- ::error::Make sure all your source files begin with the following exact lines:
149
- $COPYRIGHT
150
- EOF
+ echo '::error::The files listed above are missing the correct copyright notice.' >&2
+ echo '::error::Make sure all your source files begin with the following exact lines:' >&2
+ echo "$COPYRIGHT" >&2
151
exit 1
152
fi
0 commit comments