0

Fix lint warnings

This commit is contained in:
Gabe Kangas 2023-01-04 22:25:51 -08:00
parent 80ab351cbe
commit 3620c2eb7d
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -5,7 +5,7 @@ set -o pipefail
TEMP_DB=$(mktemp)
BUILD_ID=$((RANDOM % 7200 + 600))
BROWSER="electron" #Default. Will try to use Google Chrome.
BROWSER="electron" # Default. Will try to use Google Chrome.
if hash google-chrome 2>/dev/null; then
BROWSER="chrome"
@ -18,7 +18,7 @@ fi
pushd "$(git rev-parse --show-toplevel)"
# Bundle the updated web code into the server codebase.
if [ -z $SKIP_BUILD ]; then
if [ -z "$SKIP_BUILD" ]; then
echo "Bundling web code into server..."
./build/web/bundleWeb.sh >/dev/null
else