diff options
author | EuAndreh <eu@euandre.org> | 2021-08-17 17:02:43 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-17 17:03:28 -0300 |
commit | 45e2145a719833019bbd95072db98af03647b797 (patch) | |
tree | fe7740c7db05801b463e773b113f8f98a432e3d1 /aux/assert-shellcheck.sh | |
parent | TODOs.md: Add #task-e99fa50b-75ea-21fb-6b4d-84447646cdea (diff) | |
download | gistatic-45e2145a719833019bbd95072db98af03647b797.tar.gz gistatic-45e2145a719833019bbd95072db98af03647b797.tar.xz |
aux/, tests/lib.sh: Update
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 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 |