123456789101112131415161718 |
- #!/bin/sh
- #
- # lint bash scripts
- #
- set -o errexit
- CONFIG_DIR=".github"
- TMP_FILE="$(mktemp)"
- find "${CONFIG_DIR}" -type f -name "*.sh" > "${TMP_FILE}"
- while read -r FILE; do
- echo lint "${FILE}"
- shellcheck -x "${FILE}"
- done < "${TMP_FILE}"
|