1
0
Fork 0
dosbox-staging/scripts/verify-bash.sh
Patryk Obara 2b386fbf52 List files before running linters
Makes it more readable for human consumption. Also, redirect initial
output to stderr to fix e.g. output to json file.
2019-11-16 02:27:24 +01:00

25 lines
561 B
Bash
Executable file

#!/bin/bash
# Copyright (c) 2019 Patryk Obara <patryk.obara@gmail.com>
# SPDX-License-Identifier: GPL-2.0-or-later
# This script exists only to easily run shellcheck on all files in the repo.
# You can pass additional parameters to this script itself, e.g.:
#
# $ ./verify-bash.sh --format=json
list_bash_files () {
git ls-files \
| xargs file \
| grep "Bourne-Again shell script" \
| cut -d ':' -f 1
}
main () {
shellcheck --version >&2
echo "Checking files:" >&2
list_bash_files >&2
list_bash_files | xargs -L 1000 shellcheck "$@"
}
main "$@"