Skip to content

Commit

Permalink
Preserve empty rapid sync URL (eth-educators#1637)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne authored Nov 16, 2023
1 parent e7c5f31 commit 4ae5a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethd
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ NEW_VARS=( CL_P2P_PORT KEY_API_PORT EL_NODE FEE_RECIPIENT EL_EXTRAS CF_DNS_API_T
for var in "${ALL_VARS[@]}"; do
value=$(sed -n -e "s/^${var}=\(.*\)/\1/p" "${ENV_FILE}.source" || true)
if [ -n "${value}" ] || [ "${var}" = "GRAFFITI" ] || [ "${var}" = "MEV_RELAYS" ] \
|| [ "${var}" = "ETH_DOCKER_TAG" ]; then
|| [ "${var}" = "ETH_DOCKER_TAG" ] || [ "${var}" = "RAPID_SYNC_URL" ]; then
if [ "${var}" = "COMPOSE_FILE" ]; then
migrate_compose_file
fi
Expand Down

0 comments on commit 4ae5a5f

Please sign in to comment.