mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-22 17:45:10 +00:00
fix error message in deployCC
Signed-off-by: D <d_kelsey@uk.ibm.com>
This commit is contained in:
parent
5f71466295
commit
17d5b96493
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ elif [ -z "$CC_SRC_LANGUAGE" ] || [ "$CC_SRC_LANGUAGE" = "NA" ]; then
|
||||||
|
|
||||||
## Make sure that the path to the chaincode exists
|
## Make sure that the path to the chaincode exists
|
||||||
elif [ ! -d "$CC_SRC_PATH" ] && [ ! -f "$CC_SRC_PATH" ]; then
|
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
|
fi
|
||||||
|
|
||||||
CC_SRC_LANGUAGE=$(echo "$CC_SRC_LANGUAGE" | tr [:upper:] [:lower:])
|
CC_SRC_LANGUAGE=$(echo "$CC_SRC_LANGUAGE" | tr [:upper:] [:lower:])
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue