Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml11
1 files changed, 6 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index 32551ae9d8..4184996a81 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -1076,11 +1076,6 @@
</target>
<target name="pull_remote">
- <delete includeemptydirs="true">
- <fileset dir="${repo.bin}" defaultexcludes="false">
- <include name="bundles/*/tmp*/**"/>
- </fileset>
- </delete>
<antcall target="init_repo">
<param name="repo" value="eclipse.platform.swt"/>
<param name="repo.exists" value="repo.src.exists"/>
@@ -1092,6 +1087,9 @@
<exec dir="../../../../${TAG}/eclipse.platform.swt" executable="git" failonerror="true" timeout="900000">
<arg line="reset --hard origin/${TAG}"/>
</exec>
+ <exec dir="../../../../${TAG}/eclipse.platform.swt" executable="git" failonerror="true" timeout="900000">
+ <arg line="clean -fd"/>
+ </exec>
<antcall target="init_repo">
<param name="repo" value="eclipse.platform.swt.binaries"/>
<param name="repo.exists" value="repo.bin.exists"/>
@@ -1103,6 +1101,9 @@
<exec dir="../../../../${TAG}/eclipse.platform.swt.binaries" executable="git" failonerror="true" timeout="900000">
<arg line="reset --hard origin/${TAG}"/>
</exec>
+ <exec dir="../../../../${TAG}/eclipse.platform.swt.binaries" executable="git" failonerror="true" timeout="900000">
+ <arg line="clean -fd"/>
+ </exec>
</target>
<target name="push_remote" depends="get_tag">

Back to the top