Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2013-08-28 14:20:33 +0000
committerSilenio Quarti2013-08-28 14:20:33 +0000
commit7a19ba58564472d10a46615ea47b6ab8a0072946 (patch)
treed3c8044dcb5aff204a01113df709e3ee816357fb
parentd204b3013dcf72fc17580360d03d7bef4b0c10e5 (diff)
downloadeclipse.platform.swt-7a19ba58564472d10a46615ea47b6ab8a0072946.tar.gz
eclipse.platform.swt-7a19ba58564472d10a46615ea47b6ab8a0072946.tar.xz
eclipse.platform.swt-7a19ba58564472d10a46615ea47b6ab8a0072946.zip
BUILD - clean repos using git clean -fd
-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