diff options
Diffstat (limited to '')
-rwxr-xr-x | aux/assert-shellcheck.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aux/assert-shellcheck.sh b/aux/assert-shellcheck.sh index 334a875..fcbb1c7 100755 --- a/aux/assert-shellcheck.sh +++ b/aux/assert-shellcheck.sh @@ -1,6 +1,6 @@ #!/bin/sh set -eux -git ls-files -z | \ - xargs -0 awk 'FNR==1 && /^#!\/bin\/sh$/ { print FILENAME }' | \ +git ls-files | \ + xargs awk 'FNR==1 && /^#!\/bin\/sh$/ { print FILENAME }' | \ xargs shellcheck |