diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-05-12 13:18:40 +0300 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-05-12 14:59:08 +0300 |
| commit | 86f324c0eac3da083c1a45111c4d55a1d92aafd3 (patch) | |
| tree | 3aec434d99c19782dd122c6a0ae06262b7e9d0c6 | |
| parent | 6881d57fe1ef6acccb08b1322ae4342dc7167fa2 (diff) | |
build.ant: deploy-local.clean: remove symlinks explicitly
| -rw-r--r-- | build.ant | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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" |
