diff --git a/test-network/network.sh b/test-network/network.sh index 36ad58d8..ce7df40d 100755 --- a/test-network/network.sh +++ b/test-network/network.sh @@ -16,7 +16,7 @@ export PATH=${PWD}/../bin:$PATH export FABRIC_CFG_PATH=${PWD}/configtx export VERBOSE=false -source utils.sh +source scriptUtils.sh # Print the usage message function printHelp() { diff --git a/test-network/organizations/fabric-ca/registerEnroll.sh b/test-network/organizations/fabric-ca/registerEnroll.sh index 3132447b..6c01061d 100755 --- a/test-network/organizations/fabric-ca/registerEnroll.sh +++ b/test-network/organizations/fabric-ca/registerEnroll.sh @@ -1,6 +1,6 @@ #!/bin/bash -source utils.sh +source scriptUtils.sh function createOrg1() { diff --git a/test-network/utils.sh b/test-network/scriptUtils.sh similarity index 100% rename from test-network/utils.sh rename to test-network/scriptUtils.sh diff --git a/test-network/scripts/createChannel.sh b/test-network/scripts/createChannel.sh index de486229..22707937 100755 --- a/test-network/scripts/createChannel.sh +++ b/test-network/scripts/createChannel.sh @@ -1,6 +1,6 @@ #!/bin/bash -source utils.sh +source scriptUtils.sh CHANNEL_NAME="$1" DELAY="$2" diff --git a/test-network/scripts/deployCC.sh b/test-network/scripts/deployCC.sh index 7cdd0fe4..1b75ce62 100755 --- a/test-network/scripts/deployCC.sh +++ b/test-network/scripts/deployCC.sh @@ -1,6 +1,6 @@ #!/bin/bash -source utils.sh +source scriptUtils.sh CHANNEL_NAME=${1:-"mychannel"} CC_NAME=${2:-"basic"} diff --git a/test-network/scripts/envVar.sh b/test-network/scripts/envVar.sh index 2823a4a7..8ef2bd25 100755 --- a/test-network/scripts/envVar.sh +++ b/test-network/scripts/envVar.sh @@ -6,7 +6,7 @@ # This is a collection of bash functions used by different scripts -source utils.sh +source scriptUtils.sh export CORE_PEER_TLS_ENABLED=true export ORDERER_CA=${PWD}/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem