fix: remove || true from shellcheck step per QA review

This commit is contained in:
hugh-hackman[bot]
2026-03-19 00:06:49 +00:00
committed by GitHub
parent 218b67fb50
commit b6f97bf481
+1 -1
View File
@@ -29,7 +29,7 @@ jobs:
if ls .github/scripts/*.sh 1>/dev/null 2>&1; then
for script in .github/scripts/*.sh; do
echo "Checking ${script}..."
shellcheck --severity=warning "$script" || true
shellcheck --severity=warning "$script"
done
else
echo "No shell scripts to check"