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 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() {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
source utils.sh
|
source scriptUtils.sh
|
||||||
|
|
||||||
function createOrg1() {
|
function createOrg1() {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
source utils.sh
|
source scriptUtils.sh
|
||||||
|
|
||||||
CHANNEL_NAME="$1"
|
CHANNEL_NAME="$1"
|
||||||
DELAY="$2"
|
DELAY="$2"
|
||||||
|
|
|
||||||
|
|
@ -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"}
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue