mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Fix network.sh (#886)
This adds a missing reference to $CONTAINER_CLI. Signed-off-by: Arnaud J Le Hors <lehors@us.ibm.com>
This commit is contained in:
parent
bcb2e1c910
commit
0fe4d091d2
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ function checkPrereqs() {
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
CA_LOCAL_VERSION=$(fabric-ca-client version | sed -ne 's/ Version: //p')
|
CA_LOCAL_VERSION=$(fabric-ca-client version | sed -ne 's/ Version: //p')
|
||||||
CA_DOCKER_IMAGE_VERSION=$(docker run --rm hyperledger/fabric-ca:latest fabric-ca-client version | sed -ne 's/ Version: //p' | head -1)
|
CA_DOCKER_IMAGE_VERSION=$(${CONTAINER_CLI} run --rm hyperledger/fabric-ca:latest fabric-ca-client version | sed -ne 's/ Version: //p' | head -1)
|
||||||
infoln "CA_LOCAL_VERSION=$CA_LOCAL_VERSION"
|
infoln "CA_LOCAL_VERSION=$CA_LOCAL_VERSION"
|
||||||
infoln "CA_DOCKER_IMAGE_VERSION=$CA_DOCKER_IMAGE_VERSION"
|
infoln "CA_DOCKER_IMAGE_VERSION=$CA_DOCKER_IMAGE_VERSION"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue