Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
twoshark committed Nov 15, 2023
1 parent b37bf00 commit b72b11d
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
- run:
name: Check Sepolia RPC Endpoints
command: |
if ops/verify_geth_endpoint.sh "<< pipeline.parameters.l1_sepolia_rpc_url >>" && \
ops/verify_geth_endpoint.sh "<< pipeline.parameters.l2_sepolia_rpc_url >>"; then
if ./ops/verify-geth-endpoint.sh "<< pipeline.parameters.l1_sepolia_rpc_url >>" && \
ops/verify-geth-endpoint.sh "<< pipeline.parameters.l2_sepolia_rpc_url >>"; then
echo "Both RPC endpoints are up to date and not syncing."
echo "<< pipeline.parameters.l1_sepolia_rpc_url >>" > /tmp/l1_sepolia_rpc_url
echo "<< pipeline.parameters.l2_sepolia_rpc_url >>" > /tmp/l2_sepolia_rpc_url
Expand All @@ -54,10 +54,8 @@ jobs:
- run:
name: Check Goerli RPC Endpoints
command: |
ls -al
ls -al ops
if ops/verify_geth_endpoint.sh "<< pipeline.parameters.l1_goerli_rpc_url >>" && \
ops/verify_geth_endpoint.sh "<< pipeline.parameters.l2_goerli_rpc_url >>"; then
if ./ops/verify-geth-endpoint.sh "<< pipeline.parameters.l1_goerli_rpc_url >>" && \
./ops/verify-geth-endpoint.sh "<< pipeline.parameters.l2_goerli_rpc_url >>"; then
echo "Both RPC endpoints are up to date and not syncing."
echo "<< pipeline.parameters.l1_goerli_rpc_url >>" > /tmp/l1_goerli_rpc_url
echo "<< pipeline.parameters.l2_goerli_rpc_url >>" > /tmp/l2_goerli_rpc_url
Expand All @@ -78,8 +76,8 @@ jobs:
- run:
name: Check Mainnet RPC Endpoints
command: |
if ops/verify_geth_endpoint.sh "<< pipeline.parameters.l1_mainnet_rpc_url >>" && \
ops/verify_geth_endpoint.sh "<< pipeline.parameters.l2_mainnet_rpc_url >>"; then
if ops/verify-geth-endpoint.sh "<< pipeline.parameters.l1_mainnet_rpc_url >>" && \
ops/verify-geth-endpoint.sh "<< pipeline.parameters.l2_mainnet_rpc_url >>"; then
echo "Both RPC endpoints are up to date and not syncing."
echo "<< pipeline.parameters.l1_mainnet_rpc_url >>" > /tmp/l1_mainnet_rpc_url
echo "<< pipeline.parameters.l2_mainnet_rpc_url >>" > /tmp/l2_mainnet_rpc_url
Expand Down

0 comments on commit b72b11d

Please sign in to comment.