Use path based SHELL in Makefiles. It was suggested that this is a better solution for make for cases when there is no /usr/bin/env. See: https://github.com/purpleidea/mgmt/pull/694#discussion_r1015596204
37 lines
883 B
Bash
Executable File
37 lines
883 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# check for any mcl files that aren't properly formatted
|
|
# TODO: this is hardly exhaustive
|
|
|
|
echo running "$0"
|
|
set -o errexit
|
|
#set -o nounset
|
|
set -o pipefail
|
|
|
|
#ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" # dir!
|
|
ROOT=$(dirname "${BASH_SOURCE}")/..
|
|
cd "${ROOT}"
|
|
. test/util.sh
|
|
|
|
#F="misc/TODO.mcl" # TODO: you can add single files like this...
|
|
find_files() {
|
|
# TODO: improve this match if we use txtar for non-mcl things eventually
|
|
git ls-files | grep -e '\.mcl$' -e '\.txtar$' | grep -v 'misc/TODO.mcl'
|
|
}
|
|
|
|
bad_files=$(
|
|
#if grep -q '^ ' "$F"; then
|
|
# echo "$F"
|
|
#fi
|
|
for i in $(find_files); do
|
|
# search for at least one leading space, to ensure we use tabs
|
|
if grep -q '^ ' "$i"; then
|
|
echo "$i"
|
|
fi
|
|
done
|
|
)
|
|
|
|
if [[ -n "${bad_files}" ]]; then
|
|
fail_test "The following mcl files are not properly formatted: ${bad_files}"
|
|
fi
|
|
echo 'PASS'
|