You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"ERROR! Local Fabric binary version of $LOCAL_VERSION does not match this newer version of BYFN and is unsupported. Either move to a later version of Fabric or checkout an earlier version of fabric-samples."
echo"ERROR! Fabric Docker image version of $DOCKER_IMAGE_VERSION does not match this newer version of BYFN and is unsupported. Either move to a later version of Fabric or checkout an earlier version of fabric-samples."
echo"ERROR! Local Fabric binary version of $LOCAL_VERSION does not match this newer version of BYFN and is unsupported. Either move to a later version of Fabric or checkout an earlier version of fabric-samples."
echo"ERROR! Fabric Docker image version of $DOCKER_IMAGE_VERSION does not match this newer version of BYFN and is unsupported. Either move to a later version of Fabric or checkout an earlier version of fabric-samples."
144
+
exit 1
145
+
fi
146
146
done
147
147
}
148
148
149
149
# Generate the needed certificates, the genesis block and start the network.
150
-
functionnetworkUp() {
150
+
functionnetworkUp() {
151
151
checkPrereqs
152
152
# generate artifacts if they don't exist
153
153
if [ !-d"crypto-config" ];then
@@ -175,8 +175,8 @@ function networkUp () {
175
175
# Upgrade the network from v1.0.x to v1.1
176
176
# Stop the orderer and peers, backup the ledger from orderer and peers, cleanup chaincode containers and images
177
177
# and relaunch the orderer and peers with latest tag
# timeout duration - the duration the CLI should wait for a response from
436
435
# another container before giving up
437
436
CLI_TIMEOUT=10
@@ -451,10 +450,11 @@ LANGUAGE=golang
451
450
# default image tag
452
451
IMAGETAG="latest"
453
452
# Parse commandline args
454
-
if [ "$1"="-m" ];then# supports old usage, muscle memory is powerful!
455
-
shift
453
+
if [ "$1"="-m" ];then# supports old usage, muscle memory is powerful!
454
+
shift
456
455
fi
457
-
MODE=$1;shift
456
+
MODE=$1
457
+
shift
458
458
# Determine whether starting, stopping, restarting, generating or upgrading
459
459
if [ "$MODE"=="up" ];then
460
460
EXPMODE="Starting"
@@ -473,37 +473,45 @@ fi
473
473
474
474
whilegetopts"h?c:t:d:f:s:l:i:v" opt;do
475
475
case"$opt"in
476
-
h|\?)
477
-
printHelp
478
-
exit 0
476
+
h | \?)
477
+
printHelp
478
+
exit 0
479
479
;;
480
-
c) CHANNEL_NAME=$OPTARG
480
+
c)
481
+
CHANNEL_NAME=$OPTARG
481
482
;;
482
-
t) CLI_TIMEOUT=$OPTARG
483
+
t)
484
+
CLI_TIMEOUT=$OPTARG
483
485
;;
484
-
d) CLI_DELAY=$OPTARG
486
+
d)
487
+
CLI_DELAY=$OPTARG
485
488
;;
486
-
f) COMPOSE_FILE=$OPTARG
489
+
f)
490
+
COMPOSE_FILE=$OPTARG
487
491
;;
488
-
s) IF_COUCHDB=$OPTARG
492
+
s)
493
+
IF_COUCHDB=$OPTARG
489
494
;;
490
-
l) LANGUAGE=$OPTARG
495
+
l)
496
+
LANGUAGE=$OPTARG
491
497
;;
492
-
i) IMAGETAG=`uname -m`"-"$OPTARG
498
+
i)
499
+
IMAGETAG=$(uname -m)"-"$OPTARG
493
500
;;
494
-
v) VERBOSE=true
501
+
v)
502
+
VERBOSE=true
495
503
;;
496
504
esac
497
505
done
498
506
499
507
# Announce what was requested
500
508
501
-
if [ "${IF_COUCHDB}"=="couchdb" ];then
502
-
echo
503
-
echo"${EXPMODE} with channel '${CHANNEL_NAME}' and CLI timeout of '${CLI_TIMEOUT}' seconds and CLI delay of '${CLI_DELAY}' seconds and using database '${IF_COUCHDB}'"
504
-
else
505
-
echo"${EXPMODE} with channel '${CHANNEL_NAME}' and CLI timeout of '${CLI_TIMEOUT}' seconds and CLI delay of '${CLI_DELAY}' seconds"
506
-
fi
509
+
if [ "${IF_COUCHDB}"=="couchdb" ];then
510
+
echo
511
+
echo"${EXPMODE} with channel '${CHANNEL_NAME}' and CLI timeout of '${CLI_TIMEOUT}' seconds and CLI delay of '${CLI_DELAY}' seconds and using database '${IF_COUCHDB}'"
512
+
else
513
+
echo"${EXPMODE} with channel '${CHANNEL_NAME}' and CLI timeout of '${CLI_TIMEOUT}' seconds and CLI delay of '${CLI_DELAY}' seconds"
0 commit comments