mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
25 lines
447 B
Bash
25 lines
447 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
|
||
|
ERRORS=()
|
||
|
|
||
|
# find all executables and run `shellcheck`
|
||
|
for f in $(find . -type f -not -iwholename '*.git*' | sort -u); do
|
||
|
if file "$f" | grep --quiet shell; then
|
||
|
{
|
||
|
shellcheck "$f" && echo "[OK]: sucessfully linted $f"
|
||
|
} || {
|
||
|
# add to errors
|
||
|
ERRORS+=("$f")
|
||
|
}
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
if [ ${#ERRORS[@]} -eq 0 ]; then
|
||
|
echo "No errors, hooray"
|
||
|
else
|
||
|
echo "These files failed shellcheck: ${ERRORS[*]}"
|
||
|
exit 1
|
||
|
fi
|