From 7e4ee5d0d5a67ba2299061cc2d62343ef9d6a24b Mon Sep 17 00:00:00 2001 From: deicidus Date: Thu, 25 May 2023 23:38:33 -0700 Subject: [PATCH] fixed bitcoin URL --- spells/menu/install-bitcoin | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spells/menu/install-bitcoin b/spells/menu/install-bitcoin index 3b255c7..e2b57a7 100644 --- a/spells/menu/install-bitcoin +++ b/spells/menu/install-bitcoin @@ -31,7 +31,7 @@ install_bitcoin_from_source() { install_bitcoin_arm_binary() { say "Installing Bitcoin Core ARM precompiled binary" if [ ! -e bitcoin-$BITCOIN_VERSION* ]; then - wget https://bitcoin.org/bin/bitcoin-core-$BITCOIN_VERSION/bitcoin-$BITCOIN_VERSION-arm-linux-gnueabihf.tar.gz + wget https://bitcoincore.org/bin/bitcoin-core-$BITCOIN_VERSION/bitcoin-$BITCOIN_VERSION-arm-linux-gnueabihf.tar.gz tar -xzf bitcoin-$BITCOIN_VERSION-arm-linux-gnueabihf.tar.gz fi sudo install -m 0755 -o root -g root -t /usr/local/bin bitcoin-$BITCOIN_VERSION/bin/* @@ -41,7 +41,7 @@ install_bitcoin_arm_binary() { install_bitcoin_x86_64_binary() { say "Installing Bitcoin Core x86_64 precompiled binary" if [ ! -e bitcoin-$BITCOIN_VERSION* ]; then - wget https://bitcoin.org/bin/bitcoin-core-$BITCOIN_VERSION/bitcoin-$BITCOIN_VERSION-x86_64-linux-gnu.tar.gz + wget https://bitcoincore.org/bin/bitcoin-core-$BITCOIN_VERSION/bitcoin-$BITCOIN_VERSION-x86_64-linux-gnu.tar.gz tar -xzf bitcoin-$BITCOIN_VERSION-x86_64-linux-gnu.tar.gz fi sudo install -m 0755 -o root -g root -t /usr/local/bin bitcoin-$BITCOIN_VERSION/bin/* @@ -51,7 +51,7 @@ install_bitcoin_x86_64_binary() { install_bitcoin_macos_binary() { say "Installing Bitcoin Core macOS precompiled binary" if [ ! -e bitcoin-$BITCOIN_VERSION* ]; then - wget https://bitcoin.org/bin/bitcoin-core-$BITCOIN_VERSION/bitcoin-$BITCOIN_VERSION-osx-signed.dmg + wget https://bitcoincore.org/bin/bitcoin-core-$BITCOIN_VERSION/bitcoin-$BITCOIN_VERSION-osx-signed.dmg hdiutil attach bitcoin-$BITCOIN_VERSION-osx-signed.dmg cp -R /Volumes/Bitcoin-Core/Bitcoin-Qt.app /Applications/ hdiutil detach /Volumes/Bitcoin-Core