diff --git a/build/scripts/src/UpdateVersions.groovy b/build/scripts/src/UpdateVersions.groovy index e982b5c757..ff31777eb0 100644 --- a/build/scripts/src/UpdateVersions.groovy +++ b/build/scripts/src/UpdateVersions.groovy @@ -81,5 +81,11 @@ new File("../").eachDirRecurse println "Found pom: " + pom.getAbsolutePath() pom.text = contents.replaceAll( "${oldPomVersion}", "${newPomVersion}" ) } + + if( (contents.contains("-installer-version>${oldVersion}-")) ) + { + println "Found pom: " + pom.getAbsolutePath() + pom.text = contents.replaceAll( "-installer-version>${oldVersion}-", "-installer-version>${newVersion}-") + } } }