From 57e733608513755d85b29af3a32d6b6f4aed5b79 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner Date: Tue, 25 Aug 2026 10:03:13 +0200 Subject: [PATCH] Add dev enviroment to rebuild during update --- ct/excalidash.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/excalidash.sh b/ct/excalidash.sh index 09a265fcd..aacf5e3f9 100644 --- a/ct/excalidash.sh +++ b/ct/excalidash.sh @@ -47,11 +47,11 @@ function update_script() { msg_ok "Configured Database Provider" msg_info "Rebuilding Application" - $STD npm ci + $STD npm ci --include=dev $STD npx prisma generate $STD npx tsc cd /opt/excalidash/frontend - $STD npm ci + $STD npm ci --include=dev $STD npm run build cp -r /opt/excalidash/frontend/dist/. /var/www/excalidash/ msg_ok "Rebuilt Application"