You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
979 B
31 lines
979 B
#!/usr/bin/env bash |
|
|
|
set -ev |
|
|
|
if [[ -z "$BITCOIND_VERSION" ]]; then |
|
echo "BITCOIND_VERSION must be set" |
|
exit 1 |
|
fi |
|
|
|
if [[ "$(uname)" == "Linux" ]]; then |
|
platform="x86_64-linux-gnu" |
|
elif [[ "$(uname)" == "Darwin" ]]; then |
|
platform="x86_64-apple-darwin" |
|
else |
|
echo "Unsupported platform: $(uname)" |
|
exit 1 |
|
fi |
|
|
|
if sudo cp "$HOME/bitcoin/bitcoin-$BITCOIND_VERSION/bin/bitcoind" /usr/local/bin/bitcoind |
|
then |
|
echo "found cached bitcoind" |
|
sudo cp "$HOME/bitcoin/bitcoin-$BITCOIND_VERSION/bin/bitcoin-cli" /usr/local/bin/bitcoin-cli |
|
else |
|
mkdir -p ~/bitcoin && \ |
|
pushd ~/bitcoin && \ |
|
wget "https://bitcoincore.org/bin/bitcoin-core-$BITCOIND_VERSION/bitcoin-$BITCOIND_VERSION-$platform.tar.gz" && \ |
|
tar xvfz "bitcoin-$BITCOIND_VERSION-$platform.tar.gz" && \ |
|
sudo cp "./bitcoin-$BITCOIND_VERSION/bin/bitcoind" /usr/local/bin/bitcoind && \ |
|
sudo cp "./bitcoin-$BITCOIND_VERSION/bin/bitcoin-cli" /usr/local/bin/bitcoin-cli && \ |
|
popd |
|
fi
|
|
|