add simple ci build script to check config

This commit is contained in:
Starbeamrainbowlabs 2021-11-25 23:33:40 +00:00
parent d726e71aef
commit ca9755d770
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

7
build.sh Executable file
View file

@ -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;