devonfw / ide

Tool to automate setup and update of development environment (esp. for Java projects).
Apache License 2.0
35 stars 101 forks source link

Eclipse edition bug in migration script 2023.07.001 #1264

Closed CREITZ25 closed 1 year ago

CREITZ25 commented 1 year ago

This script adds the new editions to the devon.properties configuration files. Unfortunately, an error has happened that must be corrected with the next migration script.

The wrong lines are: /^ECLIPSE_EDITION_TYPE/ && /java/ {print"ECLIPSE_EDITION=java"} /^ECLIPSE_EDITION_TYPE/ && /JAVA/ {print"ECLIPSE_EDITION=java"} the right version is: /^ECLIPSE_EDITION_TYPE/ && /java/ {print"ECLIPSE_EDITION=eclipse"} /^ECLIPSE_EDITION_TYPE/ && /JAVA/ {print"ECLIPSE_EDITION=eclipse"}

Therefore we have to add a line in our next migration script to change ECLIPSE_EDITION=java to ECLIPSE_EDITION=eclipse in all devon.properties configuration files.