8 lines
210 B
Bash
8 lines
210 B
Bash
|
#!/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;
|