I don't think there is a way to run any arbitrary clearcase commands just the tasks that are
defined in the optional clearcase ant tasks:
http://ant.apache.org/manual/OptionalTasks/clearcase.html
So if it's not listed there you could try using the <exec> task:
http://ant.apache.org/manual/CoreTasks/exec.html
Something like:
<exec executable="cleartool" failonerror="true">
<arg value="rebase" />
<arg value="-recommended"/>
</exec>
Or write your own custom Ant task to do it. Good luck hope that helps
Doug Daniels
GENERAL DYNAMICS
C4 Systems
-----Original Message-----
From: sudheshna aaa [mailto:sudheshna@hotmail.com]
Sent: Tuesday, May 18, 2004 2:24 PM
To: user@ant.apache.org
Subject: How do I use clearcase commands from ant?
Hi,
How do I use clearcase commands from ant?
For eg: I want to run
cleartool rebase -recommended
Thank you
SD
_________________________________________________________________
Express yourself with the new version of MSN Messenger! Download today -
it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org
|