From 73b804bce78e6472a1d7f8a7026dc0cacc4694e1 Mon Sep 17 00:00:00 2001 From: Sam Heinz Date: Sun, 2 Aug 2026 05:18:48 +1000 Subject: [PATCH] fix romm missing 7z (#16194) --- ct/romm.sh | 6 ++++++ install/romm-install.sh | 2 ++ 2 files changed, 8 insertions(+) diff --git a/ct/romm.sh b/ct/romm.sh index 4b977168b..e6cf836ae 100644 --- a/ct/romm.sh +++ b/ct/romm.sh @@ -30,6 +30,12 @@ function update_script() { exit fi + if [[ ! -x /usr/bin/7zz || ! -x /usr/bin/bsdtar ]]; then + msg_info "Installing Archive Tools" + $STD apt install -y 7zip-standalone libarchive-tools + msg_ok "Installed Archive Tools" + fi + NODE_VERSION="24" setup_nodejs if check_for_gh_release "romm" "rommapp/romm"; then diff --git a/install/romm-install.sh b/install/romm-install.sh index d88410082..a9ba78ccd 100644 --- a/install/romm-install.sh +++ b/install/romm-install.sh @@ -37,6 +37,8 @@ $STD apt install -y \ redis-server \ redis-tools \ p7zip-full \ + 7zip-standalone \ + libarchive-tools \ tzdata msg_ok "Installed Dependencies"