summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2015-05-12 13:18:40 +0300
committerLV-426 <lv-426@taproot.org.il>2015-05-12 14:59:08 +0300
commit86f324c0eac3da083c1a45111c4d55a1d92aafd3 (patch)
tree3aec434d99c19782dd122c6a0ae06262b7e9d0c6
parent6881d57fe1ef6acccb08b1322ae4342dc7167fa2 (diff)
build.ant: deploy-local.clean: remove symlinks explicitly
-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"