build.sh: fix xargs -0
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 3 seconds
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 3 seconds
This commit is contained in:
parent
3cfc950335
commit
62966211c1
1 changed files with 1 additions and 1 deletions
2
build.sh
2
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;
|
||||
|
|
Loading…
Reference in a new issue