From 88310a8a1bf8a541612f5b50248f2f64229a946e Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Tue, 17 Mar 2026 09:10:13 +0100 Subject: [PATCH] remove old tar extraction and use fetch_and_deploy_gh_tag --- ct/termix.sh | 2 +- install/termix-install.sh | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/ct/termix.sh b/ct/termix.sh index a22c35b64..09d6bfb90 100644 --- a/ct/termix.sh +++ b/ct/termix.sh @@ -56,7 +56,7 @@ function update_script() { libavformat-dev msg_info "Updating Guacamole Server (guacd)" - CLEAN_INSTALL=1 fetch_and_deploy_gh_tag "guacd" "apache/guacamole-server" "/opt/guacamole-server" + fetch_and_deploy_gh_tag "guacd" "apache/guacamole-server" "${CHECK_UPDATE_RELEASE}" "/opt/guacamole-server" cd /opt/guacamole-server export CPPFLAGS="-Wno-error=deprecated-declarations" $STD autoreconf -fi diff --git a/install/termix-install.sh b/install/termix-install.sh index 15c854626..a386b2083 100644 --- a/install/termix-install.sh +++ b/install/termix-install.sh @@ -42,9 +42,7 @@ $STD apt install -y \ msg_ok "Installed Dependencies" msg_info "Building Guacamole Server (guacd)" -GUAC_SERVER_VERSION=$(get_latest_gh_tag "apache/guacamole-server") -CHECK_UPDATE_RELEASE="$GUAC_SERVER_VERSION" -CLEAN_INSTALL=1 fetch_and_deploy_gh_tag "guacd" "apache/guacamole-server" "/opt/guacamole-server" +fetch_and_deploy_gh_tag "guacd" "apache/guacamole-server" "latest" "/opt/guacamole-server" cd /opt/guacamole-server export CPPFLAGS="-Wno-error=deprecated-declarations" $STD autoreconf -fi @@ -54,7 +52,7 @@ $STD make install $STD ldconfig cd /opt rm -rf /opt/guacamole-server -msg_ok "Built Guacamole Server (guacd) ${GUAC_SERVER_VERSION}" +msg_ok "Built Guacamole Server (guacd)" NODE_VERSION="22" setup_nodejs fetch_and_deploy_gh_release "termix" "Termix-SSH/Termix"