add simple ci build script to check config
This commit is contained in:
parent
d726e71aef
commit
ca9755d770
1 changed files with 7 additions and 0 deletions
7
build.sh
Executable file
7
build.sh
Executable 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;
|
Loading…
Reference in a new issue