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:
David Enyeart 2024-04-11 22:38:54 -04:00 committed by denyeart
parent d4ce4cfadc
commit cc0d2e01f0

View file

@ -50,7 +50,7 @@ setGlobals() {
errorln "ORG Unknown"
fi
if [ "$VERBOSE" == "true" ]; then
if [ "$VERBOSE" = "true" ]; then
env | grep CORE
fi
}