check-shell-scripts.sh 345 B

12345678910111213141516171819202122
  1. #!/bin/sh
  2. set -eu
  3. IFS='
  4. '
  5. SHELL_SCRIPTS=$(
  6. find ./ \
  7. -type f \
  8. -not -path '*/vendor/*' \
  9. -not -path './dev-tools/ci-integration.sh' \
  10. -iname '*.sh'
  11. )
  12. # shellcheck disable=SC2086
  13. checkbashisms $SHELL_SCRIPTS
  14. # shellcheck disable=SC2086
  15. shellcheck $SHELL_SCRIPTS
  16. shellcheck --exclude=SC2086 ./dev-tools/ci-integration.sh