Skip to content

Commit

Permalink
Rename -legacy to -allin1 (eth-educators#1666)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne authored Dec 10, 2023
1 parent ffba73c commit 070ea18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethd
Original file line number Diff line number Diff line change
Expand Up @@ -615,8 +615,8 @@ migrate_compose_file() {
for index in "${!FROM_YML[@]}"; do
if [ "${FROM_YML[index]}" = "${__ymlfile}" ]; then
# ENV version 3 and earlier use the legacy files
if [[ "${__ymlfile}" = "nimbus.yml" ]] || [[ "${__ymlfile}" = "teku.yml" ]] \
&& [[ -n "${__source_ver:-}" ]] && [[ "${__source_ver}" -gt 3 ]]; then
if [[ "${__ymlfile}" = "nimbus.yml" || "${__ymlfile}" = "teku.yml" ]] \
&& [[ -n "${__source_ver:-}" && "${__source_ver}" -gt 3 ]]; then
break
else
__ymlfile=${TO_YML[index]}
Expand Down

0 comments on commit 070ea18

Please sign in to comment.