From 440eba0e5dae2c495c081db252ee279d8a725b47 Mon Sep 17 00:00:00 2001 From: yorickdowne <71337066+yorickdowne@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:31:53 +0100 Subject: [PATCH] No automatic switch of Erigon repo yet (#1930) --- ethd | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ethd b/ethd index 497513a0..ae717c64 100755 --- a/ethd +++ b/ethd @@ -1115,12 +1115,12 @@ __env_migrate() { if [[ "${__var}" = "LH_DOCKER_TAG" && "${__value}" = "latest-modern" ]]; then # LH 5.2 ditched latest-modern __value="latest" fi - if [[ "${__var}" = "ERIGON_DOCKER_TAG" && "${__value}" = "stable" ]]; then # Erigon switched to latest - __value="latest" - fi - if [[ "${__var}" = "ERIGON_DOCKER_REPO" && "${__value}" = "thorax/erigon" ]]; then # Erigon new repo - __value="erigontech/erigon" - fi +# if [[ "${__var}" = "ERIGON_DOCKER_TAG" && "${__value}" = "stable" ]]; then # Erigon switched to latest +# __value="latest" +# fi +# if [[ "${__var}" = "ERIGON_DOCKER_REPO" && "${__value}" = "thorax/erigon" ]]; then # Erigon new repo +# __value="erigontech/erigon" +# fi sed -i'.original' -e "s~^\(${__var}\s*=\s*\).*$~\1${__value}~" "${__env_file}" fi done