FYI: I have tried many combinations of the "exec" dir and executable line
and they all behave the same:
Examples: dir ="c:\testit" dir="c:\testit\" dir ="..\testit"
executable "test" "test.exe
At 10:56 AM 8/20/2001 -0400, you wrote:
> > =======================================================
> > <project name="Latest Test" default="Latest Test">
> > <!-- latest.xml -->
> >
> > <!-- dummy "jar" stub to be used later -->
> > <target name="jar">
> > </target>
> >
> > <target name="Latest Test" depends="jar" description="testithere">
> > <echo message="Testit is executing now"/>
> > <exec dir="c:\testit" executable="test"/>
> > </target>
> >
> > </project>
> > =======================================================
>
>I believe you need to add a trailing slash to "c:\testit". Try it and see.
>:)
>
>-Jason