vote up 1 vote down star

How can I stop a build, and notify the user if a file does not exist? I know I can use the available task to set a property if a file exists, but I'm not sure how I would stop a build and echo something.

I would like to stick with core tasks if possible.

Thanks.

flag

2 Answers

vote up 6 vote down check

You can use the fail task http://ant.apache.org/manual/CoreTasks/fail.html for all your failing needs. The last example on that page is actually pretty much what you need

<fail message="Files are missing.">
    <condition>
        <not>
            <resourcecount count="2">
                <fileset id="fs" dir="." includes="one.txt,two.txt"/>
            </resourcecount>
        </not>
    </condition>
</fail>
link|flag
Amazing how there is always another task that I have never heard about. Thanks. – Steve Oct 28 at 15:58
vote up 3 vote down

Set your property and use the Fail task with the if attribute.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.