Files
kotlin-fork/plugin_pre_build.xml
T
Andrey Breslav 88d53d7734 Make it quiet
2012-01-30 20:52:29 +04:00

11 lines
320 B
XML

<project name="Kotlin Plugin Pre-build Step">
<property name="artifact.output.path" value="${basedir}/out/artifacts/KotlinPlugin"/>
<target name="cleanup">
<delete verbose="true" quiet="true">
<fileset dir="${artifact.output.path}" includes="*"/>
</delete>
</target>
</project>