From 2078153aa1c857ad0e66913c6acce27572ff1d27 Mon Sep 17 00:00:00 2001 From: Yihau Chen Date: Wed, 13 Mar 2024 02:15:59 +0800 Subject: [PATCH] [anza migration]: fix download path for cluster test (#204) --- net/net.sh | 2 +- scripts/agave-install-deploy.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/net.sh b/net/net.sh index 36bc48efdb7861..c1e93d095be7eb 100755 --- a/net/net.sh +++ b/net/net.sh @@ -563,7 +563,7 @@ prepareDeploy() { if [[ -n $releaseChannel ]]; then echo "Downloading release from channel: $releaseChannel" rm -f "$SOLANA_ROOT"/solana-release.tar.bz2 - declare updateDownloadUrl=https://release.solana.com/"$releaseChannel"/solana-release-x86_64-unknown-linux-gnu.tar.bz2 + declare updateDownloadUrl=https://release.agave.xyz/"$releaseChannel"/solana-release-x86_64-unknown-linux-gnu.tar.bz2 ( set -x curl -L -I "$updateDownloadUrl" diff --git a/scripts/agave-install-deploy.sh b/scripts/agave-install-deploy.sh index a8f8eeb65b3857..01366a1cfbc5af 100755 --- a/scripts/agave-install-deploy.sh +++ b/scripts/agave-install-deploy.sh @@ -57,10 +57,10 @@ esac case $TAG in edge|beta) - DOWNLOAD_URL=https://release.solana.com/"$TAG"/solana-release-$TARGET.tar.bz2 + DOWNLOAD_URL=https://release.agave.xyz/"$TAG"/solana-release-$TARGET.tar.bz2 ;; *) - DOWNLOAD_URL=https://github.com/solana-labs/solana/releases/download/"$TAG"/solana-release-$TARGET.tar.bz2 + DOWNLOAD_URL=https://github.com/anza-xyz/agave/releases/download/"$TAG"/solana-release-$TARGET.tar.bz2 ;; esac