You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FAB-8748 Get fabric-ca-client binary from bootstrap.sh
Include curl command in bootstrap.sh script to download
fabric-ca-client binary from nexus2. This will keep
fabric-ca-client binary in bin directory along with fabric
binaries. Also update samples.rst doc to include the missing
binary list
Change-Id: If23e7bb75323d15a19a8703e4c2c4bcde5dbb391
Signed-off-by: rameshthoomu <rameshbabu.thoomu@gmail.com>
echo"===> Downloading platform specific fabric binaries"
51
51
curl https://nexus.hyperledger.org/content/repositories/releases/org/hyperledger/fabric/hyperledger-fabric/${ARCH}-${VERSION}/hyperledger-fabric-${ARCH}-${VERSION}.tar.gz | tar xz
52
52
53
+
echo"===> Downloading platform specific fabric-ca-client binary"
54
+
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
55
+
if [ $?!= 0 ];then
56
+
echo
57
+
echo"------> $VERSION fabric-ca-client binary is not available to download (Avaialble from 1.1.0-rc1) <----"
0 commit comments