From 7ce0edac95840f57d5f6715570ff41abe76b3fcc Mon Sep 17 00:00:00 2001 From: Dan Beghin Date: Mon, 2 Jun 2025 17:10:28 +0000 Subject: [PATCH] fix(wastebin): use tar asset --- ct/wastebin.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/wastebin.sh b/ct/wastebin.sh index 3cfb6644d..500106700 100644 --- a/ct/wastebin.sh +++ b/ct/wastebin.sh @@ -64,8 +64,8 @@ EOF msg_info "Updating Wastebin" temp_file=$(mktemp) - curl -fsSL "https://github.com/matze/wastebin/releases/download/${RELEASE}/wastebin_${RELEASE}_x86_64-unknown-linux-musl.zip" -o "$temp_file" - $STD unzip -o $temp_file + curl -fsSL "https://github.com/matze/wastebin/releases/download/${RELEASE}/wastebin_${RELEASE}_x86_64-unknown-linux-musl.tar.zst" -o "$temp_file" + tar -xf $temp_file cp -f wastebin /opt/wastebin/ chmod +x /opt/wastebin/wastebin echo "${RELEASE}" >/opt/${APP}_version.txt