cluster-deployment/build.sh
Starbeamrainbowlabs 62966211c1
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 3 seconds
build.sh: fix xargs -0
2021-11-26 22:06:40 +00:00

8 lines
213 B
Bash
Executable file

#!/usr/bin/env bash
# $1 == "ci" when run by Laminar CI
set -x;
find . -iname '*.sh' -not -path '*lantern-build-engine*' -print0 | xargs -0 -P "$(nproc)" shellcheck --external-sources --color --exclude SC2094;