From 2480e9b5d7c8705faf7a0dff03d725e272f59251 Mon Sep 17 00:00:00 2001
From: EuAndreh <eu@euandre.org>
Date: Mon, 8 Mar 2021 22:30:08 -0300
Subject: Remove xargs -0 flag usage

---
 aux/assert-shellcheck.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'aux')

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
-- 
cgit v1.2.3