Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm creating build file for phing. The problem is that it must move a file which may not exist. If it doesn't I get BuildException "Could not find file ... to copy".

In the Ant there was a property failonerror which ignored the errors of move and copy tasks, but there is no similar property for phing move and copy tasks.

Move phing code:

<move file="no_such_file.txt" tofile="other_path.txt" overwrite="true" />

Is there any built in functionality to catch the errors using phing build? Or maybe it's possible to check on file existence before moving?

share|improve this question

2 Answers

up vote 1 down vote accepted

I have avoided the problem using such move task:

<move todir="${dir}" overwrite="true">
    <mapper type="glob" from="no_such_file.txt" to="other_path.txt"/>
    <fileset dir="${dir}" />
</move>
share|improve this answer

I've added a ticket (see http://phing.info/trac/ticket/582) to add a haltonerror attribute to the copy/move tasks.

share|improve this answer
Thank you! Seems it has been fixed recently. – Gedrox Nov 12 '10 at 13:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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