Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Thondapu2014-02-06 18:19:40 +0000
committerGerrit Code Review @ Eclipse.org2014-02-06 19:38:27 +0000
commitd4fd69826df5f9c87c205583d97916cdd8b7c255 (patch)
treeda5cd4a1a3ed34bdd3c03770097dd4c0b76f5d8b /releng/org.eclipse.equinox.launcher.releng
parent7023e8326f47e81d36c1c482225956a62b9fa9fe (diff)
downloadrt.equinox.framework-d4fd69826df5f9c87c205583d97916cdd8b7c255.tar.gz
rt.equinox.framework-d4fd69826df5f9c87c205583d97916cdd8b7c255.tar.xz
rt.equinox.framework-d4fd69826df5f9c87c205583d97916cdd8b7c255.zip
add back the code that updates the binaryTag
See https://bugs.eclipse.org/bugs/show_bug.cgi?id=425922#c1 for details Change-Id: I7edd61bc2d68d3c2b4c48fe3b9afb7a46518c118 Signed-off-by: Arun Thondapu <arunkumar.thondapu@in.ibm.com>
Diffstat (limited to 'releng/org.eclipse.equinox.launcher.releng')
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index d0401531b..cce6ebf06 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -240,5 +240,9 @@
<git dir="${localGit}/rt.equinox.binaries" command="commit" arguments="-a -m &quot;Recompiled binaries ${commitMsg}&quot;" />
<git dir="${localGit}/rt.equinox.binaries" command="tag" arguments="${tag}" />
+ <replaceregexp match="binaryTag=(.*)" replace="binaryTag=${tag}" >
+ <fileset dir="${localGit}/rt.equinox.framework" includes="**/build.properties" />
+ </replaceregexp>
+ <git dir="${localGit}/rt.equinox.framework" command="commit" arguments="-a -m &quot;Binaries ${tag} ${commitMsg}&quot;" />
</target>
</project>

Back to the top