Skip to content

Commit

Permalink
Fix version3 branch name typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Mar 8, 2017
1 parent 3e21efb commit d086ab7
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 verion3
call :init libbitcoin libbitcoin version3
IF %ERRORLEVEL% NEQ 0 (
call :failure "Initializing repository libbitcoin libbitcoin verion3 failed."
call :failure "Initializing repository libbitcoin libbitcoin version3 failed."
exit /b 1
)
call :init libbitcoin libbitcoin-protocol verion3
call :init libbitcoin libbitcoin-protocol version3
IF %ERRORLEVEL% NEQ 0 (
call :failure "Initializing repository libbitcoin libbitcoin-protocol verion3 failed."
call :failure "Initializing repository libbitcoin libbitcoin-protocol version3 failed."
exit /b 1
)
call :init libbitcoin libbitcoin-client verion3
call :init libbitcoin libbitcoin-client version3
IF %ERRORLEVEL% NEQ 0 (
call :failure "Initializing repository libbitcoin libbitcoin-client verion3 failed."
call :failure "Initializing repository libbitcoin libbitcoin-client version3 failed."
exit /b 1
)
call :init libbitcoin libbitcoin-network verion3
call :init libbitcoin libbitcoin-network version3
IF %ERRORLEVEL% NEQ 0 (
call :failure "Initializing repository libbitcoin libbitcoin-network verion3 failed."
call :failure "Initializing repository libbitcoin libbitcoin-network version3 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 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[@]} "$@"
build_from_github libbitcoin libbitcoin version3 $PARALLEL ${BITCOIN_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-protocol version3 $PARALLEL ${BITCOIN_PROTOCOL_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-client version3 $PARALLEL ${BITCOIN_CLIENT_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin-network version3 $PARALLEL ${BITCOIN_NETWORK_OPTIONS[@]} "$@"
build_from_travis libbitcoin libbitcoin-explorer version3 $PARALLEL ${BITCOIN_EXPLORER_OPTIONS[@]} "$@"
}


Expand Down

0 comments on commit d086ab7

Please sign in to comment.