diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..059456b --- /dev/null +++ b/build.sh @@ -0,0 +1,7 @@ +#!/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;