gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.0 KiB
45 lines
1.0 KiB
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ "${DEBUG:-}" ]] && set -x
|
|
|
|
success() {
|
|
printf "\r\033[2K [ \033[00;32mOK\033[0m ] Linting %s...\n" "$1"
|
|
}
|
|
|
|
fail() {
|
|
printf "\r\033[2K [\033[0;31mFAIL\033[0m] Linting %s...\n" "$1"
|
|
exit 1
|
|
}
|
|
|
|
check() {
|
|
local script="$1"
|
|
shellcheck "$script" || fail "$script"
|
|
success "$script"
|
|
}
|
|
|
|
find_prunes() {
|
|
local prunes="! -path './.git/*'"
|
|
if [ -f .gitmodules ]; then
|
|
while read module; do
|
|
prunes="$prunes ! -path './$module/*'"
|
|
done < <(grep path .gitmodules | awk '{print $3}')
|
|
fi
|
|
echo "$prunes"
|
|
}
|
|
|
|
find_cmd() {
|
|
echo "find . -type f -and \( -perm +111 -or -name '*.sh' \) $(find_prunes)"
|
|
}
|
|
|
|
check_all_executables() {
|
|
echo "Linting all executables and .sh files, ignoring files inside git modules..."
|
|
eval "$(find_cmd)" | while read script; do
|
|
head=$(head -n1 "$script")
|
|
[[ "$head" =~ .*ruby.* ]] && continue
|
|
[[ "$head" =~ .*zsh.* ]] && continue
|
|
[[ "$head" =~ ^#compdef.* ]] && continue
|
|
check "$script"
|
|
done
|
|
}
|
|
|
|
check_all_executables
|
|
|