Skip to content

Commit

Permalink
Update version3 branch installer to build from version3 branches.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Mar 8, 2017
1 parent 3276011 commit 3e21efb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,24 @@ IF NOT EXIST "%nuget_pkg_path%" (
)
)

call :init libbitcoin libbitcoin master
call :init libbitcoin libbitcoin verion3
IF %ERRORLEVEL% NEQ 0 (
call :failure "Initializing repository libbitcoin libbitcoin master failed."
call :failure "Initializing repository libbitcoin libbitcoin verion3 failed."
exit /b 1
)
call :init libbitcoin libbitcoin-protocol master
call :init libbitcoin libbitcoin-protocol verion3
IF %ERRORLEVEL% NEQ 0 (
call :failure "Initializing repository libbitcoin libbitcoin-protocol master failed."
call :failure "Initializing repository libbitcoin libbitcoin-protocol verion3 failed."
exit /b 1
)
call :init libbitcoin libbitcoin-client master
call :init libbitcoin libbitcoin-client verion3
IF %ERRORLEVEL% NEQ 0 (
call :failure "Initializing repository libbitcoin libbitcoin-client master failed."
call :failure "Initializing repository libbitcoin libbitcoin-client verion3 failed."
exit /b 1
)
call :init libbitcoin libbitcoin-network master
call :init libbitcoin libbitcoin-network verion3
IF %ERRORLEVEL% NEQ 0 (
call :failure "Initializing repository libbitcoin libbitcoin-network master failed."
call :failure "Initializing repository libbitcoin libbitcoin-network verion3 failed."
exit /b 1
)
call :bld_repo libbitcoin-explorer
Expand Down
10 changes: 5 additions & 5 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -734,11 +734,11 @@ build_all()
build_from_tarball_boost $BOOST_URL $BOOST_ARCHIVE bzip2 . $PARALLEL "$BUILD_BOOST" "${BOOST_OPTIONS[@]}"
build_from_github zeromq libzmq master $PARALLEL ${ZMQ_OPTIONS[@]} "$@"
build_from_github libbitcoin secp256k1 version4 $PARALLEL ${SECP256K1_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin master $PARALLEL ${BITCOIN_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-protocol master $PARALLEL ${BITCOIN_PROTOCOL_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-client master $PARALLEL ${BITCOIN_CLIENT_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-network master $PARALLEL ${BITCOIN_NETWORK_OPTIONS[@]} "$@"
build_from_travis libbitcoin libbitcoin-explorer master $PARALLEL ${BITCOIN_EXPLORER_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin verion3 $PARALLEL ${BITCOIN_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-protocol verion3 $PARALLEL ${BITCOIN_PROTOCOL_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-client verion3 $PARALLEL ${BITCOIN_CLIENT_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-network verion3 $PARALLEL ${BITCOIN_NETWORK_OPTIONS[@]} "$@"
build_from_travis libbitcoin libbitcoin-explorer verion3 $PARALLEL ${BITCOIN_EXPLORER_OPTIONS[@]} "$@"
}


Expand Down

0 comments on commit 3e21efb

Please sign in to comment.