2024-07-08 05:12:38 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
## SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
##
|
|
|
|
## SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
set -eu
|
|
|
|
|
2024-08-06 12:15:24 -04:00
|
|
|
command -v git >/dev/null ||
|
|
|
|
{ printf '%s\n' "Missing program: git" >&2; exit 1; }
|
2024-07-10 08:36:05 -04:00
|
|
|
repo_toplevel="$(git rev-parse --show-toplevel)"
|
|
|
|
test -d "${repo_toplevel}" || exit 1
|
2024-07-19 09:29:17 -04:00
|
|
|
cd "${repo_toplevel}"
|
2024-07-10 08:36:05 -04:00
|
|
|
unset repo_toplevel
|
2024-07-08 05:12:38 -04:00
|
|
|
./scripts/requires-program.sh yamllint
|
|
|
|
|
|
|
|
if test -n "${1-}"; then
|
|
|
|
files=""
|
2024-07-10 08:36:05 -04:00
|
|
|
for f in "${@}"; do
|
|
|
|
test -f "${f}" || continue
|
2024-07-08 05:12:38 -04:00
|
|
|
extension="${f##*.}"
|
2024-07-10 08:36:05 -04:00
|
|
|
case "${extension}" in
|
|
|
|
yaml|yml) files="${files} ${f}";;
|
2024-07-08 05:12:38 -04:00
|
|
|
*) continue;;
|
|
|
|
esac
|
|
|
|
done
|
2024-07-10 08:36:05 -04:00
|
|
|
test -n "${files}" || exit 0
|
2024-07-08 05:12:38 -04:00
|
|
|
exec yamllint ${files}
|
|
|
|
fi
|
|
|
|
|
|
|
|
exec yamllint .
|