mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-22 01:25:10 +00:00
test-network envVar.sh script improvement
Change shell script to use single equals. In my shell environment single bracket with double equals did not work. It caused failure when running the chaincode-external tutorial README. It looks like for maximum portability, it is best to use single bracket with single equals. Signed-off-by: David Enyeart <enyeart@us.ibm.com>
This commit is contained in:
parent
d4ce4cfadc
commit
820368571d
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ setGlobals() {
|
||||||
errorln "ORG Unknown"
|
errorln "ORG Unknown"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$VERBOSE" == "true" ]; then
|
if [ "$VERBOSE" = "true" ]; then
|
||||||
env | grep CORE
|
env | grep CORE
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue