Add prepare script to allow CI to skip build

This commit is contained in:
Bill Thornton 2020-11-17 22:20:34 -05:00
parent f59003568f
commit c6862bfdfe
4 changed files with 12 additions and 7 deletions

5
scripts/prepare.sh Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
if [ -z "${SKIP_PREPARE}" ]; then
npx gulp --production
fi