From e013403db18c8334eb48fd1af20552d4890bcda6 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Mon, 1 Jun 2026 15:59:05 +0200 Subject: [PATCH] fix(fireshare): rebuild client on update to fix nginx 500 (#14848) Co-authored-by: Cursor --- ct/fireshare.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ct/fireshare.sh b/ct/fireshare.sh index 5933df28b..a611593dd 100644 --- a/ct/fireshare.sh +++ b/ct/fireshare.sh @@ -53,6 +53,12 @@ function update_script() { export VIDEO_DIRECTORY=/opt/fireshare-videos export PROCESSED_DIRECTORY=/opt/fireshare-processed $STD uv run flask db upgrade + + msg_info "Building Fireshare Client" + cd /opt/fireshare/app/client + $STD npm install + $STD npm run build + msg_ok "Built Fireshare Client" msg_ok "Updated Fireshare" msg_info "Starting Service"