summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.ant9
1 files changed, 5 insertions, 4 deletions
diff --git a/build.ant b/build.ant
index 9674ca51..8e5d914b 100644
--- a/build.ant
+++ b/build.ant
@@ -89,15 +89,16 @@
<target name="deploy-local.clean">
- <mkdir dir="${deploy_target_dir}" description="bootstrap if missing" />
+ <symlink action="delete" link="${deploy_target_dir}/static/fragment.d" />
+ <symlink action="delete" link="${deploy_target_dir}/bin" />
- <!-- bin/ -> link: avoid specifying followsymlinks on the following delete task -->
- <symlink action="delete" link="deploy-local/bin" />
<delete verbose="true" includeemptydirs="true">
<fileset dir="${deploy_target_dir}"
includes="**/*"
- defaultexcludes="false" />
+ defaultexcludes="false"
+ followsymlinks="false" />
</delete>
+
</target>
<target name="deploy-local"