From ca9755d770c395afaef109556ece1700c0aa1672 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 25 Nov 2021 23:33:40 +0000 Subject: [PATCH] add simple ci build script to check config --- build.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 build.sh 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;