Skip to main content
summaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.emf.cdo.releng/build.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/releng/org.eclipse.emf.cdo.releng/build.xml b/releng/org.eclipse.emf.cdo.releng/build.xml
index 221f4050e3..59c82cc76d 100644
--- a/releng/org.eclipse.emf.cdo.releng/build.xml
+++ b/releng/org.eclipse.emf.cdo.releng/build.xml
@@ -91,18 +91,22 @@
</macrodef>
<target name="init.clean.tools" if="${env.CLEAN_TOOLS}">
+ <echo message="Cleaning tools..."/>
<antcall target="clean.tools" />
</target>
<target name="init.clean.tp" if="${env.CLEAN_TP}">
+ <echo message="Cleaning target platform..."/>
<antcall target="clean.tp" />
</target>
<target name="init.clean.workspace" if="${env.CLEAN_WORKSPACE}">
+ <echo message="Cleaning workspace..."/>
<antcall target="clean.workspace" />
</target>
<target name="init.clean.output" if="${env.CLEAN_OUTPUT}">
+ <echo message="Cleaning output..."/>
<antcall target="clean.output" />
</target>

Back to the top