diff --git a/docs/source/samples.rst b/docs/source/samples.rst index a8ac26e6641..ac9a9473e89 100644 --- a/docs/source/samples.rst +++ b/docs/source/samples.rst @@ -72,8 +72,10 @@ created above. It retrieves four platform-specific binaries: * ``cryptogen``, * ``configtxgen``, - * ``configtxlator``, and + * ``configtxlator``, * ``peer`` + * ``orderer`` and + * ``fabric-ca-client`` and places them in the ``bin`` sub-directory of the current working directory. diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index e63dfd153de..c943f8f597f 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -47,9 +47,16 @@ dockerCaPull() { : ${FABRIC_TAG:="$MARCH-$VERSION"} : ${THIRDPARTY_TAG:="$MARCH-$THIRDPARTY_IMAGE_VERSION"} -echo "===> Downloading platform binaries" +echo "===> Downloading platform specific fabric binaries" curl https://nexus.hyperledger.org/content/repositories/releases/org/hyperledger/fabric/hyperledger-fabric/${ARCH}-${VERSION}/hyperledger-fabric-${ARCH}-${VERSION}.tar.gz | tar xz +echo "===> Downloading platform specific fabric-ca-client binary" +curl https://nexus.hyperledger.org/content/repositories/releases/org/hyperledger/fabric-ca/hyperledger-fabric-ca/${ARCH}-${VERSION}/hyperledger-fabric-ca-${ARCH}-${VERSION}.tar.gz | tar xz +if [ $? != 0 ]; then + echo + echo "------> $VERSION fabric-ca-client binary is not available to download (Avaialble from 1.1.0-rc1) <----" + echo +fi echo "===> Pulling fabric Images" dockerFabricPull ${FABRIC_TAG}