1
0
mirror of https://github.com/community-scripts/ProxmoxVE.git synced 2025-04-19 16:48:07 +00:00

FluidCalendar: Switch to safer DB operations (#3270)

This commit is contained in:
Chris 2025-03-19 13:47:00 -04:00 committed by GitHub
parent 8c8412c7f8
commit 1035318f84
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ function update_script() {
export NEXT_TELEMETRY_DISABLED=1 export NEXT_TELEMETRY_DISABLED=1
$STD npm install --legacy-peer-deps $STD npm install --legacy-peer-deps
$STD npm run prisma:generate $STD npm run prisma:generate
$STD npm run prisma:migrate $STD npx prisma migrate deploy
$STD npm run build:os $STD npm run build:os
msg_ok "Updated $APP to v${RELEASE}" msg_ok "Updated $APP to v${RELEASE}"

View File

@ -74,7 +74,7 @@ export NEXT_TELEMETRY_DISABLED=1
cd /opt/fluid-calendar cd /opt/fluid-calendar
$STD npm install --legacy-peer-deps $STD npm install --legacy-peer-deps
$STD npm run prisma:generate $STD npm run prisma:generate
$STD npm run prisma:migrate $STD npx prisma migrate deploy
$STD npm run build:os $STD npm run build:os
msg_ok "Setup ${APPLICATION}" msg_ok "Setup ${APPLICATION}"