On Fri, 2002-09-20 at 11:19, Edward Zarecor wrote:
> 
> <target name="fail.transfer.complete" unless="${transfer.complete}">
>     <echo>transfer status: ${transfer.complete}</echo>
>     <delete file="${run.file}" />
>     <echo>Completion files are not present. Failing for now.</echo>
>     <fail />
> </target>
> 

Use the property name without the ${}

<target name="fail.transfer.complete" unless="transfer.complete">

Ant is looking for a property named "${transfer.complete}" rather then a
property called "transfer.complete"

Jesse

-- 
 Jesse Stockall
 [EMAIL PROTECTED]


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to