1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-21 07:05:58 +02:00

Fix Launcher version update

This commit is contained in:
Martin Oberhuber 2010-02-28 22:39:53 +00:00
parent c3bd8a5d1e
commit 6d7c7b6be1

View file

@ -162,13 +162,14 @@ if [ ! -f eclipse/plugins/org.eclipse.cdt.core_${CDTFEAT}.${CDTVER}.jar ]; then
unzip ../${CDTNAME} unzip ../${CDTNAME}
cd .. cd ..
#java -jar eclipse/startup.jar \ #java -jar eclipse/startup.jar \
java -jar eclipse/plugins/org.eclipse.equinox.launcher_1.0.*.jar \ LAUNCHER=`ls eclipse/plugins/org.eclipse.equinox.launcher*.jar | sort | tail -1`
java -jar ${LAUNCHER} \
-application org.eclipse.update.core.standaloneUpdate \ -application org.eclipse.update.core.standaloneUpdate \
-command install \ -command install \
-from file://${CDTTMP} \ -from file://${CDTTMP} \
-featureId org.eclipse.cdt.platform \ -featureId org.eclipse.cdt.platform \
-version ${CDTFEAT}.${CDTVER} -version ${CDTFEAT}.${CDTVER}
java -jar eclipse/plugins/org.eclipse.equinox.launcher_1.0.*.jar \ java -jar ${LAUNCHER} \
-application org.eclipse.update.core.standaloneUpdate \ -application org.eclipse.update.core.standaloneUpdate \
-command install \ -command install \
-from file://${CDTTMP} \ -from file://${CDTTMP} \