fix romm missing 7z (#16194)

This commit is contained in:
Sam Heinz
2026-08-02 05:18:48 +10:00
committed by GitHub
parent 5b65310d62
commit 73b804bce7
2 changed files with 8 additions and 0 deletions

View File

@@ -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

View File

@@ -37,6 +37,8 @@ $STD apt install -y \
redis-server \
redis-tools \
p7zip-full \
7zip-standalone \
libarchive-tools \
tzdata
msg_ok "Installed Dependencies"