From 3583af1cf095cbf7e8cf0cbd0b169cfc2cfacc36 Mon Sep 17 00:00:00 2001 From: Thiago Canozzo Lahr Date: Thu, 26 Feb 2026 15:58:59 -0300 Subject: [PATCH] update Signed-off-by: Thiago Canozzo Lahr --- ct/immichframe.sh | 7 +++---- install/immichframe-install.sh | 1 - 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/ct/immichframe.sh b/ct/immichframe.sh index 897c2644f..262ba185a 100644 --- a/ct/immichframe.sh +++ b/ct/immichframe.sh @@ -38,18 +38,17 @@ function update_script() { CLEAN_INSTALL=1 fetch_and_deploy_gh_release "immichframe" "immichFrame/ImmichFrame" "tarball" "latest" "/tmp/immichframe" msg_info "Building Application" cd /tmp/immichframe - $STD /opt/dotnet/dotnet publish ImmichFrame.WebApi/ImmichFrame.WebApi.csproj \ + /opt/dotnet/dotnet publish ImmichFrame.WebApi/ImmichFrame.WebApi.csproj \ --configuration Release \ --runtime linux-x64 \ --self-contained false \ --output /app cd /tmp/immichframe/immichFrame.Web - $STD npm ci - $STD npm run build + npm ci + npm run build rm -rf /app/wwwroot/* cp -r build/* /app/wwwroot - rm -rf /tmp/immichframe msg_ok "Application Built" msg_info "Starting Service" diff --git a/install/immichframe-install.sh b/install/immichframe-install.sh index 9353bffd9..c92afaf35 100644 --- a/install/immichframe-install.sh +++ b/install/immichframe-install.sh @@ -47,7 +47,6 @@ cd /tmp/immichframe/immichFrame.Web $STD npm ci $STD npm run build cp -r build/* /app/wwwroot -rm -rf /tmp/immichframe msg_ok "Application Built" msg_info "Configuring ImmichFrame"