From f9a2e43584607eba81ab88100dc3c6c94be6a130 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Sat, 7 Mar 2026 22:12:17 +0100 Subject: [PATCH] Change apt-get to apt in installation script --- install/immichframe-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/immichframe-install.sh b/install/immichframe-install.sh index 46b46b076..4bfd12480 100644 --- a/install/immichframe-install.sh +++ b/install/immichframe-install.sh @@ -20,7 +20,7 @@ setup_deb822_repo \ "https://packages.microsoft.com/debian/13/prod/" \ "trixie" \ "main" -$STD apt-get install -y \ +$STD apt install -y \ libicu-dev \ libssl-dev \ gettext-base \ @@ -47,8 +47,8 @@ cp -r build/* /opt/immichframe/wwwroot msg_ok "Application Built" msg_info "Removing Build Dependencies" -$STD apt-get remove -y dotnet-sdk-8.0 -$STD apt-get autoremove -y +$STD apt remove -y dotnet-sdk-8.0 +$STD apt autoremove -y rm -rf /tmp/immichframe msg_ok "Removed Build Dependencies"