Browse Source

fixing syntax error, only one condition is supported inside the condition task

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1591190 13f79535-47bb-0310-9956-ffa450edef68
master
Antoine Levy-Lambert 11 years ago
parent
commit
6a66bea047
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      build.xml

+ 4
- 2
build.xml View File

@@ -1204,8 +1204,10 @@
</target>

<condition property="buildosxpackage">
<os family="mac"/>
<isset property="buildosxpackage.required"/>
<and>
<os family="mac"/>
<isset property="buildosxpackage.required"/>
</and>
</condition>

<target name="pkg_distribution" depends="zip_distribution" if="buildosxpackage">


Loading…
Cancel
Save