23 lines
575 B
Bash
Executable file
23 lines
575 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
CHECKPATH=".gitlab-ci/container" # TODO: expand to cover whole .gitlab-ci/
|
|
|
|
is_bash() {
|
|
[[ $1 == *.sh ]] && return 0
|
|
[[ $1 == */bash-completion/* ]] && return 0
|
|
[[ $(file -b --mime-type "$1") == text/x-shellscript ]] && return 0
|
|
return 1
|
|
}
|
|
|
|
while IFS= read -r -d $'' file; do
|
|
if is_bash "$file" ; then
|
|
shellcheck -x -W0 -s bash "$file"
|
|
rc=$?
|
|
if [ "${rc}" -eq 0 ]
|
|
then
|
|
continue
|
|
else
|
|
exit 1
|
|
fi
|
|
fi
|
|
done < <(find $CHECKPATH -type f \! -path "./.git/*" -print0)
|