cluster-deployment/build.sh

8 lines
213 B
Bash
Raw Normal View History

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