Files
mongo/bazel/lint.sh
Zack Winter d983587f36 SERVER-102469 Invert pass/fail default in linter shim (#33645)
GitOrigin-RevId: db8f10db669a747e3004e4032fae57ffd067d130
2025-04-10 01:32:52 +00:00

9 lines
177 B
Bash
Executable File

# placeholder for bazel/wrapper_hook/lint.py
if [[ $1 == "ALL_PASSING" ]]; then
echo "No linter errors found!"
exit 0
fi
echo "Linter run failed, see details above"
exit 1