mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-26 03:25:09 +00:00
rename utils to scriptUtils
Signed-off-by: Naser Mirzaei <nasermirzaei89@gmail.com>
This commit is contained in:
parent
2eca551fa3
commit
9e10294912
6 changed files with 5 additions and 5 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
source utils.sh
|
||||
source scriptUtils.sh
|
||||
|
||||
function createOrg1() {
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
source utils.sh
|
||||
source scriptUtils.sh
|
||||
|
||||
CHANNEL_NAME="$1"
|
||||
DELAY="$2"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
source utils.sh
|
||||
source scriptUtils.sh
|
||||
|
||||
CHANNEL_NAME=${1:-"mychannel"}
|
||||
CC_NAME=${2:-"basic"}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue