build.sh: fix xargs -0
continuous-integration/laminar-eldarion Build failed with exit code 123 after 3 seconds Details

This commit is contained in:
Starbeamrainbowlabs 2021-11-26 22:06:40 +00:00
parent 3cfc950335
commit 62966211c1
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -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;