From 40a04490ad8828436d133966f0fe5ab92842c9db Mon Sep 17 00:00:00 2001 From: axleiro <83293196+axleiro@users.noreply.github.com> Date: Wed, 8 Dec 2021 18:58:35 +0530 Subject: [PATCH] Replacing the "ssh" with the "https" link for cloning the GitHub repo { using: git clone https://github.com/solana-labs/testnet-keypairs.git "${REPO_ROOT}"/net/keypairs replacing : #git clone git@github.com:solana-labs/testnet-keypairs.git "${REPO_ROOT}"/net/keypairs } --- system-test/testnet-automation.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/system-test/testnet-automation.sh b/system-test/testnet-automation.sh index f372c99ebe..40e9da9882 100755 --- a/system-test/testnet-automation.sh +++ b/system-test/testnet-automation.sh @@ -104,7 +104,8 @@ function launch_testnet() { execution_step "Fetch reusable testnet keypairs" if [[ ! -d "${REPO_ROOT}"/net/keypairs ]]; then - git clone git@github.com:solana-labs/testnet-keypairs.git "${REPO_ROOT}"/net/keypairs + git clone https://github.com/solana-labs/testnet-keypairs.git "${REPO_ROOT}"/net/keypairs + #git clone git@github.com:solana-labs/testnet-keypairs.git "${REPO_ROOT}"/net/keypairs # If we have provider-specific keys (CoLo*, GCE*, etc) use them instead of generic val* if [[ -d "${REPO_ROOT}"/net/keypairs/"${CLOUD_PROVIDER}" ]]; then cp "${REPO_ROOT}"/net/keypairs/"${CLOUD_PROVIDER}"/* "${REPO_ROOT}"/net/keypairs/