Fix bash bracket error
parent
83017747a6
commit
9e4f628356
|
@ -47,7 +47,7 @@ docker tag hyperledger/fabric-baseos:$ARCH-$BASE_IMG_TAG hyperledger/fabric-base
|
|||
|
||||
echo "=== Pulling fabric images ${FABRIC_IMG_TAG} from fabric repo... ==="
|
||||
for IMG in peer tools orderer ca ccenv tools; do
|
||||
if ["$FABRIC_IMG_TAG" == "latest"]; then
|
||||
if [ "$FABRIC_IMG_TAG" == "latest" ]; then
|
||||
HLF_IMG=hyperledger/fabric-${IMG}:$FABRIC_IMG_TAG
|
||||
else
|
||||
HLF_IMG=hyperledger/fabric-${IMG}:$ARCH-$FABRIC_IMG_TAG
|
||||
|
|
|
@ -8,7 +8,7 @@ ARCH=amd64
|
|||
BASE_IMG_TAG=0.4.14
|
||||
|
||||
# For fabric images, including peer, orderer, ca
|
||||
FABRIC_IMG_TAG=latest
|
||||
FABRIC_IMG_TAG=1.4.0
|
||||
|
||||
PROJECT_VERSION=1.4.0
|
||||
|
||||
|
|
Loading…
Reference in New Issue