1) IIRC there _must not_ be a space betwixt "-D" and the property: i.e. 
your command line should look like this:

    cmd /c ant -buildfile
    D:\v04_E\Build_Scripts\CvsDiffReports\automated_cvsdiffs.xml 
manualDiff
    -DDevBuild1=$1 -DDevBuild2=$2 > D:\test2.txt

2) You might consider using the "-l" option instead of redirecting the 
output.

3) Your stanza <property name="DevBuild1"> value="$(DevBuild1)"/> is 
completely wrong & totally unnecessary if you pass in the parameters 
correctly.

-- 
Jeffrey E. Care ([EMAIL PROTECTED])
WebSphere Build SWAT Team Lead
WebSphere Build Tooling Lead (Project Mantis)
https://w3.opensource.ibm.com/projects/mantis


"Radha Sangal" <[EMAIL PROTECTED]> wrote on 01/11/2005 10:30:50 AM:

> [snip]
> 
> cmd /c ant -buildfile
> D:\v04_E\Build_Scripts\CvsDiffReports\automated_cvsdiffs.xml manualDiff
> -D DevBuild1=$1  -D DevBuild2=$2 > D:\test2.txt
> 
> 
> 
> ($1 and $2 are passed from the client and are tested to have the right
> value at run time)
> 
> 
> 
> Ant script "automated_cvsdiffs.xml" receiving these parameters:
> 
> <target name="manualDiff">
> 
>                         <!-- TO use manual diff, set the build names
> 
below. This targets DEV build only -->
> 
>                         <property name="DevBuild1"
> value="$(DevBuild1)"/>
> 
>                         <property name="DevBuild2"
> value="$(DevBuild2)"/>
> 
>                         <echo message="Starting CVS Difference Report
> (${DevBuild1} to ${DevBuild2})"/> 
> 
> 
> 
> Output as in test2.txt :
> 
> manualDiff:
> 
>      [echo] Starting CVS Difference Report ($(DevBuild1) to
> $(DevBuild2))

Reply via email to