Skip to content

Commit 7b5f23d

Browse files
committed
[FAB-3684] Default $CHANNEL_NAME is not set
Default $CHANNEL_NAME is not set in e2e_cli/generateArtifacts.sh This patch fixes the script to set "mychannel" as defalut channel. Change-Id: Id6dbf33723b7f433463fcee9f5bb265a20736dd1 Signed-off-by: Yuki Kondo <[email protected]>
1 parent 58f33ec commit 7b5f23d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/e2e_cli/generateArtifacts.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#set -e
44

5-
: ${CHANNEL_NAME:="mychannel"}
65
CHANNEL_NAME=$1
6+
: ${CHANNEL_NAME:="mychannel"}
77
echo $CHANNEL_NAME
88

99
export FABRIC_ROOT=$PWD/../..

0 commit comments

Comments
 (0)