diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-06-07 10:41:21 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-06-07 10:41:24 -0400 |
commit | 43695b0cf851893ad93aaf1ad50d991e0cf8db9f (patch) | |
tree | 9ba2e7109c3ed3e5e66ed78c96e519cb183af7aa | |
parent | 1b90a7b61a37d450bbe5b485dcc9b8c591567e0d (diff) | |
parent | fa4cd1fdae3c3d9c47f5c31876c08ab1d676e5e3 (diff) |
Merge #19201: ci: Switch to bitcoincore.org download
fa4cd1fdae3c3d9c47f5c31876c08ab1d676e5e3 ci: Switch to bitcoincore.org download (MarcoFalke)
Pull request description:
bitcoin.org is down and not in our control, so it seems odd to rely on it for our ci infrastructure
ACKs for top commit:
troygiorshev:
ACK fa4cd1f
Tree-SHA512: f9f0e9c69a52b8b1906ceae195e8bcc189799fb39be921b26e3a37d1f8f3999831f86c96c3546848c0d01429c36cfb2d7c5f314655ac5282d3e8e4cdd838960e
-rwxr-xr-x | contrib/devtools/previous_release.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/previous_release.sh b/contrib/devtools/previous_release.sh index b2ecc274fb..d375291f47 100755 --- a/contrib/devtools/previous_release.sh +++ b/contrib/devtools/previous_release.sh @@ -137,7 +137,7 @@ pushd "$TARGET" || exit 1 else BIN_PATH="bin/bitcoin-core-${tag:1}" fi - URL="https://bitcoin.org/$BIN_PATH/bitcoin-${tag:1}-$PLATFORM.tar.gz" + URL="https://bitcoincore.org/$BIN_PATH/bitcoin-${tag:1}-$PLATFORM.tar.gz" echo "Fetching: $URL" if ! curl -O -f $URL; then echo "Download failed." |