https://issues.apache.org/bugzilla/show_bug.cgi?id=53918

          Priority: P2
            Bug ID: 53918
          Assignee: [email protected]
           Summary: Add if and unless to <sequential> task
          Severity: normal
    Classification: Unclassified
                OS: Linux
          Reporter: [email protected]
          Hardware: PC
            Status: NEW
           Version: unspecified
         Component: Core tasks
           Product: Ant

A common construct is:

<target depends="test" if="success">
  <dostuff>
</target>
<target name="test">
<condition property="success" xxx>
</target>

This would be simplified if we could use:
<target>
  <condition property="success" xxx>
  <sequential if="success">
    <dostuff>
  </sequential>
</target>

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to