rename utils to scriptUtils

Signed-off-by: Naser Mirzaei <nasermirzaei89@gmail.com>
This commit is contained in:
Naser Mirzaei 2020-08-27 01:38:06 +04:30
parent 2eca551fa3
commit 9e10294912
6 changed files with 5 additions and 5 deletions

View file

@ -16,7 +16,7 @@ export PATH=${PWD}/../bin:$PATH
export FABRIC_CFG_PATH=${PWD}/configtx export FABRIC_CFG_PATH=${PWD}/configtx
export VERBOSE=false export VERBOSE=false
source utils.sh source scriptUtils.sh
# Print the usage message # Print the usage message
function printHelp() { function printHelp() {

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
source utils.sh source scriptUtils.sh
function createOrg1() { function createOrg1() {

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
source utils.sh source scriptUtils.sh
CHANNEL_NAME="$1" CHANNEL_NAME="$1"
DELAY="$2" DELAY="$2"

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
source utils.sh source scriptUtils.sh
CHANNEL_NAME=${1:-"mychannel"} CHANNEL_NAME=${1:-"mychannel"}
CC_NAME=${2:-"basic"} CC_NAME=${2:-"basic"}

View file

@ -6,7 +6,7 @@
# This is a collection of bash functions used by different scripts # This is a collection of bash functions used by different scripts
source utils.sh source scriptUtils.sh
export CORE_PEER_TLS_ENABLED=true 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 export ORDERER_CA=${PWD}/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem