Merge branch 'release' into staging

bfc0837936224e409772b80acf686d43a8decc59

Cohee <18619528+Cohee1207@users.noreply.github.com>

5 files changed, +6 -6Ignore whitespace
Dockerfile+1 -1
@@ -19,7 +19,7 @@ ENV NODE_ENV=production
1919COPY package*.json post-install.js ./
2020RUN \
2121 echo "*** Install npm packages ***" && \
2222 npm i --no-audit --no-fund --quietloglevel=error --no-progress --omit=dev && npm cache clean --force
2323
2424# Bundle app source
2525COPY . ./
Start.bat+1 -1
@@ -1,7 +1,7 @@
11@echo off
22pushd %~dp0
33set NODE_ENV=production
44call npm install --no-audit --no-fund --quietloglevel=error --no-progress --omit=dev
55node server.js %*
66pause
77popd
UpdateAndStart.bat+1 -1
@@ -12,7 +12,7 @@ if %errorlevel% neq 0 (
1212 )
1313)
1414set NODE_ENV=production
1515call npm install --no-audit --no-fund --quietloglevel=error --no-progress --omit=dev
1616node server.js %*
1717pause
1818popd
UpdateForkAndStart.bat+2 -2
@@ -42,7 +42,7 @@ if NOT "!AUTO_SWITCH!"=="" (
4242 SET TARGET_BRANCH=release
4343 goto update
4444 )
45-
45+
4646 echo Auto-switching defined to stay on current branch
4747 goto update
4848)
@@ -95,7 +95,7 @@ if %errorlevel% neq 0 (
9595
9696echo Installing npm packages and starting server
9797set NODE_ENV=production
9898call npm install --no-audit --no-fund --quietloglevel=error --no-progress --omit=dev
9999node server.js %*
100100
101101:end
start.sh+1 -1
@@ -26,7 +26,7 @@ fi
2626
2727echo "Installing Node Modules..."
2828export NODE_ENV=production
2929npm i --no-audit --no-fund --quietloglevel=error --no-progress --omit=dev
3030
3131echo "Entering SillyTavern..."
3232node "server.js" "$@"