From 45e2145a719833019bbd95072db98af03647b797 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Tue, 17 Aug 2021 17:02:43 -0300 Subject: aux/, tests/lib.sh: Update --- aux/assert-shellcheck.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'aux/assert-shellcheck.sh') diff --git a/aux/assert-shellcheck.sh b/aux/assert-shellcheck.sh index 29d66a5..40fd364 100755 --- a/aux/assert-shellcheck.sh +++ b/aux/assert-shellcheck.sh @@ -1,6 +1,6 @@ #!/bin/sh set -eu -git ls-files | - xargs awk 'FNR==1 && /^#!\/bin\/sh$/ { print FILENAME }' | +find . -name '*.sh' -print0 | + xargs -0 awk 'FNR==1 && /^#!\/bin\/sh$/ { print FILENAME }' | xargs shellcheck -- cgit v1.2.3