Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--releng/org.eclipse.emf.cdo.releng/hudson/promote-milestone.sh12
1 files changed, 7 insertions, 5 deletions
diff --git a/releng/org.eclipse.emf.cdo.releng/hudson/promote-milestone.sh b/releng/org.eclipse.emf.cdo.releng/hudson/promote-milestone.sh
index d9ba36acf0..a6cc43b209 100644
--- a/releng/org.eclipse.emf.cdo.releng/hudson/promote-milestone.sh
+++ b/releng/org.eclipse.emf.cdo.releng/hudson/promote-milestone.sh
@@ -1,6 +1,6 @@
stream=4.0
-milestone=M7a
-buildID=1320
+milestone=RC1
+buildID=1426
rm -rf promote.tmp
mkdir promote.tmp
@@ -25,10 +25,12 @@ if [ -n "$PROBLEM_BUNDLES" ]; then
exit 2
fi
-for F in artifacts content; do
- /shared/common/jdk-1.5.0-22.x86_64/bin/jar xf $F.jar
+JAR=/shared/common/jdk-1.5.0-22.x86_64/bin/jar
+for F in artifacts content
+do
+ $JAR xf $F.jar
sed -i "/<property name='p2\.compressed'/a \ \ \ \ <property name='p2.mirrorsURL' value='http://www.eclipse.org/downloads/download.php?file=/modeling/emf/cdo/updates/$stream/$stream-$milestone-$label&amp;protocol=http&amp;format=xml'/>'>" $F.xml
- /shared/common/jdk-1.5.0-22.x86_64/bin/jar cvf $F.jar $F.xml
+ $JAR cf $F.jar $F.xml
done
cp -R . /home/data/httpd/download.eclipse.org/modeling/emf/cdo/updates/$stream/$stream-$milestone-$label

Back to the top