add offline option to bundleWeb.sh (#3193)

Co-authored-by: janWilejan <>
This commit is contained in:
janWilejan 2023-07-21 23:48:10 +00:00 committed by GitHub
parent 3dafc77140
commit e338da9fa3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,13 +5,26 @@ set -o errexit
set -o nounset
set -o pipefail
OFFLINE=0
while [[ $# -gt 0 ]]; do
case $1 in
--offline)
OFFLINE=1
;;
esac
shift
done
# Change to the root directory of the repository
cd "$(git rev-parse --show-toplevel)"
cd web
if [ ! "$OFFLINE" ]
then
echo "Installing npm modules for the owncast web..."
npm --silent install 2>/dev/null
fi
echo "Building owncast web..."
rm -rf .next