You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git-secret/vendor/bats-core/shellcheck.sh

21 lines
277 B
Bash

#!/usr/bin/env bash
set -e
targets=()
while IFS= read -r -d $'\0'; do
targets+=("$REPLY")
done < <(
find \
bin/bats \
libexec/bats-core \
lib/bats-core \
shellcheck.sh \
-type f \
-print0
)
LC_ALL=C.UTF-8 shellcheck "${targets[@]}"
exit $?