Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmi Shanmugam2018-01-31 13:28:22 +0000
committerLakshmi Shanmugam2018-01-31 13:29:15 +0000
commit5774ec775a04631696b25871f7dc95f2c7218af4 (patch)
tree658a2533406ffb1d949b5909524da6bbb0f333cc
parentd1292f1900745b235464d8a97177b6c5e7235f1d (diff)
downloadeclipse.platform.swt-5774ec775a04631696b25871f7dc95f2c7218af4.tar.gz
eclipse.platform.swt-5774ec775a04631696b25871f7dc95f2c7218af4.tar.xz
eclipse.platform.swt-5774ec775a04631696b25871f7dc95f2c7218af4.zip
Bug 530536: Reconfigure SWT build jobs for Jenkins
Use replaceAll instead of replace. Change-Id: Iab7e220414cf47c736039d10ed83ff1f1f84f3d9
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index bbede00842..d9fb2ca92e 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -618,9 +618,9 @@
<![CDATA[
rfiles = project.getProperty("rfiles");
if (rfiles.length() > 0) {
- project.setProperty("removed_files", rfiles.replace(";", " "));
+ project.setProperty("removed_files", rfiles.replaceAll(";", " "));
}
- project.setProperty("added_files", project.getProperty("afiles").replace(";", " "));
+ project.setProperty("added_files", project.getProperty("afiles").replaceAll(";", " "));
]]>
</script>

Back to the top