From a05f0ccd5a5e7fceea9eed510aea8c970550f7be Mon Sep 17 00:00:00 2001 From: Lucas Date: Tue, 30 Jul 2024 16:01:55 -0300 Subject: [PATCH] Remove solana-labs references --- sdk/cargo-build-sbf/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/cargo-build-sbf/src/main.rs b/sdk/cargo-build-sbf/src/main.rs index 62df0fb17ef270..6d02499c8fbc6d 100644 --- a/sdk/cargo-build-sbf/src/main.rs +++ b/sdk/cargo-build-sbf/src/main.rs @@ -156,7 +156,7 @@ fn find_installed_platform_tools() -> Vec { } fn get_latest_platform_tools_version() -> Result { - let url = "https://github.com/solana-labs/platform-tools/releases/latest"; + let url = "https://github.com/anza-xyz/platform-tools/releases/latest"; let resp = reqwest::blocking::get(url).map_err(|err| format!("Failed to GET {url}: {err}"))?; let path = std::path::Path::new(resp.url().path()); let version = path.file_name().unwrap().to_string_lossy().to_string(); @@ -618,7 +618,7 @@ fn build_solana_package( install_if_missing( config, package, - "https://github.com/solana-labs/platform-tools/releases/download", + "https://github.com/anza-xyz/platform-tools/releases/download", platform_tools_download_file_name.as_str(), &target_path, )