I've created a target which I call using an antcall but I would like to not have the
target displayed in the output. Is there a way to not have the antcalled target
displayed.
Here is the example
<target name="fetchingSource">
<antcall target="SourceGet">
<param name="title" value="Folder /Data"/>
<param name="fetch.to" value="${fetch.dir}/Data"/>
<param name="vss.from" value="${ss.root}/application1/Data"/>
</antcall>
</target>
<target name="SourceGet">
<echo></echo>
<echo message="---------------------------------------------------------------"/>
<echo message=" Fetching ${title} "/>
<echo message="---------------------------------------------------------------"/>
<tstamp prefix="clock"><format property="time" pattern="MM/dd/yyyy hh:mm:ss
aa"/></tstamp>
<echo message="Current Time : ${clock.time}"/>
<vssget localPath="${fetch.to}"
recursive="true"
ssdir="${vss.ssdir}"
vsspath="${vss.from}"
writable="false"
label="${ss.label}"/>
<echo></echo>
<tstamp prefix="clock"><format property="time" pattern="MM/dd/yyyy hh:mm:ss
aa"/></tstamp>
<echo message="Current Time : ${clock.time}"/>
</target>
output is
fetch:
SourceGet:
[echo] ---------------------------------------------------------------
[echo] Fetching Folder /Data
[echo] ---------------------------------------------------------------
I'd like it to just be
fetch:
[echo] ---------------------------------------------------------------
[echo] Fetching Folder /Data
[echo] ---------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]