Disable treating warning as errors (#4559)

Suppress Shellcheck warnings.
This commit is contained in:
Igor Pečovnik 2022-12-13 12:38:23 +01:00 committed by GitHub
parent 1166723044
commit 7c87c7654a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ jobs:
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
if grep -qE "#\!/" $file; then
shellcheck $file
shellcheck --severity=error $file
fi
done