diff --git a/.shellcheck_exclude_paths b/.shellcheck_exclude_paths index 1ef95d56a2..e84d523737 100644 --- a/.shellcheck_exclude_paths +++ b/.shellcheck_exclude_paths @@ -15,3 +15,18 @@ scripts/developer/setup.sh scripts/docker/setup-user.sh scripts/runconf/runconf.sh scripts/runconf/runconf_olcf.sh +testing/contract/lammps/build.sh +testing/contract/lammps/config.sh +testing/contract/lammps/install.sh +testing/contract/lammps/setup.sh +testing/contract/lammps/test.sh +testing/contract/scorpio/build.sh +testing/contract/scorpio/config.sh +testing/contract/scorpio/install.sh +testing/contract/scorpio/setup.sh +testing/contract/scorpio/test.sh +testing/contract/tau/build.sh +testing/contract/tau/config.sh +testing/contract/tau/install.sh +testing/contract/tau/setup.sh +testing/contract/tau/test.sh diff --git a/scripts/ci/scripts/run-shellcheck.sh b/scripts/ci/scripts/run-shellcheck.sh index c987a5bea0..1dc735fc8b 100755 --- a/scripts/ci/scripts/run-shellcheck.sh +++ b/scripts/ci/scripts/run-shellcheck.sh @@ -15,7 +15,7 @@ fi # Give me a sorted list of the project scripts found_scripts="$({ - find scripts -regextype posix-extended -iregex '.*\.(sh|bash)' -print; + find scripts source testing -regextype posix-extended -iregex '.*\.(sh|bash)' -print; grep -rnlE -e '#!/(/usr)?/bin/(bash|sh)' -e '#!(/usr)?/bin/env\s+(bash|sh)' scripts; } | sort -u)"