mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 18:24:13 +08:00
5941fc8ccd
Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21977>
24 lines
522 B
Bash
Executable File
24 lines
522 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CHECKPATH=".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)
|