From 6899719cbbd4900970469d46e8bbf56f3346333d Mon Sep 17 00:00:00 2001 From: Nao Nishijima Date: Thu, 6 Jul 2017 11:20:59 -0700 Subject: [PATCH] [FAB-5195] byfn.sh help text is incorrect The descriptions for "down" and "restart" are the same as "up". This patch set changes the descriptions. Change-Id: I0ee03e5d81faa4ad6a3c43354e8a44648288df90 Signed-off-by: Nao Nishijima --- first-network/byfn.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/first-network/byfn.sh b/first-network/byfn.sh index 64eabb5a51..7c60f37bd7 100755 --- a/first-network/byfn.sh +++ b/first-network/byfn.sh @@ -33,8 +33,8 @@ function printHelp () { echo " byfn.sh -h|--help (print this message)" echo " -m - one of 'up', 'down', 'restart' or 'generate'" echo " - 'up' - bring up the network with docker-compose up" - echo " - 'down' - bring up the network with docker-compose up" - echo " - 'restart' - bring up the network with docker-compose up" + echo " - 'down' - clear the network with docker-compose down" + echo " - 'restart' - restart the network" echo " - 'generate' - generate required certificates and genesis block" echo " -c - channel name to use (defaults to \"mychannel\")" echo " -t - CLI timeout duration in microseconds (defaults to 10000)"