From d1ca4b03429797b50bd6a2f8ae435fea6f610665 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Mar 2026 18:08:48 +0000 Subject: [PATCH] fix(cross-seed): use apt and ensure_dependencies per review feedback Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com> --- ct/cross-seed.sh | 1 + install/cross-seed-install.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ct/cross-seed.sh b/ct/cross-seed.sh index 73371e019..416b9c2e7 100644 --- a/ct/cross-seed.sh +++ b/ct/cross-seed.sh @@ -25,6 +25,7 @@ function update_script() { check_container_resources NODE_VERSION="24" setup_nodejs + ensure_dependencies build-essential if command -v cross-seed &>/dev/null; then current_version=$(cross-seed --version) diff --git a/install/cross-seed-install.sh b/install/cross-seed-install.sh index 62b9c6f3b..25a3f7ab8 100644 --- a/install/cross-seed-install.sh +++ b/install/cross-seed-install.sh @@ -14,7 +14,7 @@ network_check update_os msg_info "Installing Dependencies" -$STD apt-get install -y build-essential +$STD apt install -y build-essential msg_ok "Installed Dependencies" NODE_VERSION="24" setup_nodejs