7 lines
210 B
Bash
Executable file
7 lines
210 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 -P "$(nproc)" shellcheck --external-sources --color --exclude SC2094;
|