diff options
author | EuAndreh <eu@euandre.org> | 2021-03-08 22:21:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-08 22:21:50 -0300 |
commit | 992bc27734c8fb1eaef73db5bb5af378ebbbdbcd (patch) | |
tree | 0b3079ffc80856cb8ed8a7ed096434ba8372589f /aux/assert-shellcheck.sh | |
parent | scripts/gistatic.pl: Mark as executable (diff) | |
download | gistatic-992bc27734c8fb1eaef73db5bb5af378ebbbdbcd.tar.gz gistatic-992bc27734c8fb1eaef73db5bb5af378ebbbdbcd.tar.xz |
Remove xargs -0 flag usage
Diffstat (limited to 'aux/assert-shellcheck.sh')
-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 |