Merge pull request #457 from kleetus/master

Updated the download script for the latest bitcoind tag.
This commit is contained in:
Braydon Fuller 2016-06-27 11:03:18 -04:00 committed by GitHub
commit cfe12eb17e
1 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@ set -e
root_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/.."
platform=`uname -a | awk '{print tolower($1)}'`
arch=`uname -m`
version="0.12.0"
version="0.12.1"
url="https://github.com/bitpay/bitcoin/releases/download"
tag="v0.12-bitcore"
tag="v0.12.1-bitcore"
if [ "${platform}" == "linux" ]; then
if [ "${arch}" == "x86_64" ]; then