Fix shellcheck linting failure

Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
This commit is contained in:
Mark S. Lewis 2025-01-16 21:34:19 +00:00
parent 00bd6aa65c
commit 736a513ee4
No known key found for this signature in database

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..."