From 62966211c1db05296ddacf5723c41e9ad7324f31 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 26 Nov 2021 22:06:40 +0000 Subject: [PATCH] build.sh: fix xargs -0 --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 059456b..5a42a1a 100755 --- a/build.sh +++ b/build.sh @@ -4,4 +4,4 @@ set -x; -find . -iname '*.sh' -not -path '*lantern-build-engine*' -print0 | xargs -P "$(nproc)" shellcheck --external-sources --color --exclude SC2094; +find . -iname '*.sh' -not -path '*lantern-build-engine*' -print0 | xargs -0 -P "$(nproc)" shellcheck --external-sources --color --exclude SC2094;