mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-06-29 02:00:54 +02:00
travis: install bitcoind 0.17.1 binaries
This commit is contained in:
16
scripts/install_bitcoind.sh
Executable file
16
scripts/install_bitcoind.sh
Executable file
@ -0,0 +1,16 @@
|
||||
#!/usr/env bash
|
||||
|
||||
export BITCOIND_VERSION=0.17.1
|
||||
|
||||
if sudo cp ~/bitcoin/bitcoin-$BITCOIND_VERSION/bin/bitcoind /usr/local/bin/bitcoind
|
||||
then echo "bitcoind installed"
|
||||
else
|
||||
mkdir -p ~/bitcoin && \
|
||||
pushd ~/bitcoin && \
|
||||
wget https://bitcoin.org/bin/bitcoin-core-$BITCOIND_VERSION/bitcoin-$BITCOIND_VERSION-x86_64-linux-gnu.tar.gz && \
|
||||
tar xvfz bitcoin-$BITCOIND_VERSION-x86_64-linux-gnu.tar.gz && \
|
||||
sudo cp ./bitcoin-$BITCOIND_VERSION/bin/bitcoind
|
||||
/usr/local/bin/bitcoind && \
|
||||
popd
|
||||
fi
|
||||
|
Reference in New Issue
Block a user