From b8ea24154edcd717e796bbe89adf48ef8ef1284c Mon Sep 17 00:00:00 2001 From: gmega Date: Fri, 22 May 2026 11:10:36 -0300 Subject: [PATCH] update get-logos-storage script to use zip instead of tar.gz --- scripts/get-logos-storage.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/get-logos-storage.sh b/scripts/get-logos-storage.sh index cfe81bc..02a95d6 100755 --- a/scripts/get-logos-storage.sh +++ b/scripts/get-logos-storage.sh @@ -54,7 +54,7 @@ main() { echo "Latest version: ${version}" executable_name="logos-storage-${platform}-${version}" - download_url="${DOWNLOAD_BASE_URL}/${version}/${executable_name}.tar.gz" + download_url="${DOWNLOAD_BASE_URL}/${version}/${executable_name}.zip" echo "Downloading from: ${download_url}" @@ -62,11 +62,11 @@ main() { # shellcheck disable=SC2064 trap "rm -rf '${tmp_dir}'" EXIT - curl -sL "$download_url" -o "${tmp_dir}/archive.tar.gz" + curl -sL "$download_url" -o "${tmp_dir}/archive.zip" echo "Extracting..." - echo "tar -xzf ${tmp_dir}/archive.tar.gz -C ${tmp_dir}" - tar -xzf "${tmp_dir}/archive.tar.gz" -C "$tmp_dir" + echo "unzip ${tmp_dir}/archive.zip -d ${tmp_dir}" + unzip "${tmp_dir}/archive.zip" -d "$tmp_dir" mkdir -p "$output_dir"