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.
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.