Fix shellcheck linting failure (#1293)

Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
This commit is contained in:
Mark S. Lewis 2025-01-16 22:26:21 +00:00 committed by munapower
parent 9e058f7f81
commit 4b503fa342

View file

@ -63,7 +63,7 @@ networkStart() {
./org1ca.sh > ./logs/org1ca.log 2>&1 & ./org1ca.sh > ./logs/org1ca.log 2>&1 &
./org2ca.sh > ./logs/org2ca.log 2>&1 & ./org2ca.sh > ./logs/org2ca.log 2>&1 &
echo "Waiting ${CLI_DELAY}s..." echo "Waiting ${CLI_DELAY}s..."
sleep ${CLI_DELAY} sleep "${CLI_DELAY}"
fi fi
if [ -d "${PWD}"/channel-artifacts ] && [ -d "${PWD}"/crypto-config ]; then if [ -d "${PWD}"/channel-artifacts ] && [ -d "${PWD}"/crypto-config ]; then
@ -90,7 +90,7 @@ networkStart() {
fi fi
echo "Waiting ${CLI_DELAY}s..." echo "Waiting ${CLI_DELAY}s..."
sleep ${CLI_DELAY} sleep "${CLI_DELAY}"
echo "Starting peers..." echo "Starting peers..."
./peer1.sh > ./logs/peer1.log 2>&1 & ./peer1.sh > ./logs/peer1.log 2>&1 &
@ -99,7 +99,7 @@ networkStart() {
./peer4.sh > ./logs/peer4.log 2>&1 & ./peer4.sh > ./logs/peer4.log 2>&1 &
echo "Waiting ${CLI_DELAY}s..." echo "Waiting ${CLI_DELAY}s..."
sleep ${CLI_DELAY} sleep "${CLI_DELAY}"
if [ "${CREATE_CHANNEL}" = "true" ]; then if [ "${CREATE_CHANNEL}" = "true" ]; then
echo "Joining orderers to channel..." echo "Joining orderers to channel..."