We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f8a78f commit f7090c3Copy full SHA for f7090c3
1 file changed
Tools/scripts/build_ci.sh
@@ -524,6 +524,14 @@ for t in $CI_BUILD_TARGET; do
524
continue
525
fi
526
527
+ if [ "$t" == "shellcheck" ]; then
528
+ echo "Running shellcheck on scripts"
529
+
530
+ # Ignore scripts in the modules directory
531
+ find . -path ./modules -prune -o -type f -name '*.sh' -exec shellcheck --severity=error '{}' +
532
+ continue
533
+ fi
534
535
if [ "$t" == "param-file-validation" ]; then
536
echo "Testing param check script"
537
./Tools/scripts/param_check_unittests.py
0 commit comments