From bf90734ac5193ebfe274b723b3824a3a65d59e1e Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Sat, 1 Aug 2026 23:12:52 +1000 Subject: [PATCH] fix romm missing 7z --- 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"