Starbeamrainbowlabs
62966211c1
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 123 after 3 seconds
7 lines
213 B
Bash
Executable file
7 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;
|