diff options
| author | EuAndreh <eu@euandre.org> | 2021-03-08 22:16:20 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2021-03-08 22:18:44 -0300 |
| commit | 055c823e4257f76eae6f5de696a363aa2647dd64 (patch) | |
| tree | 63e18226e71de04ced2719d4fe75b3d76409298a /aux | |
| parent | scripts/task: Add missing shift (diff) | |
| download | dotfiles-055c823e4257f76eae6f5de696a363aa2647dd64.tar.gz dotfiles-055c823e4257f76eae6f5de696a363aa2647dd64.tar.xz | |
fake-symlinks: Stop using -0 from xargs
Diffstat (limited to 'aux')
| -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 334a8750..fcbb1c70 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 |
