mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
7b5ef7166f
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
25 lines
471 B
Bash
Executable File
25 lines
471 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
|
|
ERRORS=()
|
|
|
|
# find all executables and run `shellcheck`
|
|
for f in $(find . -type f -not -iwholename '*.git*' -not -name "Dockerfile" | 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
|