From 17d5b96493972835270ab4962d000c8c5de48b7b Mon Sep 17 00:00:00 2001 From: D Date: Fri, 13 May 2022 11:06:21 +0100 Subject: [PATCH] fix error message in deployCC Signed-off-by: D --- test-network/scripts/deployCC.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-network/scripts/deployCC.sh b/test-network/scripts/deployCC.sh index 82add333..7560e13f 100755 --- a/test-network/scripts/deployCC.sh +++ b/test-network/scripts/deployCC.sh @@ -45,7 +45,7 @@ elif [ -z "$CC_SRC_LANGUAGE" ] || [ "$CC_SRC_LANGUAGE" = "NA" ]; then ## Make sure that the path to the chaincode exists elif [ ! -d "$CC_SRC_PATH" ] && [ ! -f "$CC_SRC_PATH" ]; then - fatalln "dfghPath to chaincode does not exist. Please provide different path." + fatalln "Path to chaincode does not exist. Please provide different path." fi CC_SRC_LANGUAGE=$(echo "$CC_SRC_LANGUAGE" | tr [:upper:] [:lower:])