Browse Source

Revert "add offline option to bundleWeb.sh (#3193)"

This reverts commit e338da9fa3.
pull/3197/head
Gabe Kangas 3 years ago
parent
commit
82d5e5c695
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
  1. 17
      build/web/bundleWeb.sh

17
build/web/bundleWeb.sh

@ -5,26 +5,13 @@ set -o errexit @@ -5,26 +5,13 @@ 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 "Installing npm modules for the owncast web..."
npm --silent install 2>/dev/null
echo "Building owncast web..."
rm -rf .next

Loading…
Cancel
Save