fix error message in deployCC

Signed-off-by: D <d_kelsey@uk.ibm.com>
This commit is contained in:
D 2022-05-13 11:06:21 +01:00 committed by Dave Enyeart
parent 5f71466295
commit 17d5b96493

View file

@ -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:])