From d7215a17d74d09d09a8ead17db36fd5c7ac0156e Mon Sep 17 00:00:00 2001 From: Dmitry <98899785+mdqst@users.noreply.github.com> Date: Fri, 28 Feb 2025 13:46:42 +0300 Subject: [PATCH] chore: fixed unquoted curl parameters to avoid errors Signed-off-by: Dmitry <98899785+mdqst@users.noreply.github.com> --- scripts/l1_node.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/l1_node.sh b/scripts/l1_node.sh index 4f352870a..e4545ce46 100755 --- a/scripts/l1_node.sh +++ b/scripts/l1_node.sh @@ -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"