Skip to content

Commit

Permalink
chore: fixed unquoted curl parameters to avoid errors
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry <[email protected]>
  • Loading branch information
mdqst authored Feb 28, 2025
1 parent 4bde6e3 commit d7215a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/l1_node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ if [ ! -f $INIT_FLAG ]; then
fi
echo "Node is initialized"

SEEDS=$(curl -Ls ${SEEDS_URL})
PEERS=$(curl -Ls ${PEERS_URL})
SEEDS=$(curl -Ls "${SEEDS_URL}")
PEERS=$(curl -Ls "${PEERS_URL}")

if [ "x${STATE_SYNC_RPC1}" != "x" ]; then
echo "Enable state sync"
Expand Down

0 comments on commit d7215a1

Please sign in to comment.