On Feb 21, 8:07 am, benoit.bel...@gmail.com wrote:
...
> <exec executable="cleartool" failonerror="true">
> <arg value="rebase" />
[quoted text clipped - 4 lines]
> Which gives me the following result:
> [exec] cleartool: Error: Unrecognized option "-view myviewname"
It seems the value '-view myviewname' is
being taken as a single string.
Try..
<exec executable="cleartool" failonerror="true">
<arg value="rebase" />
<arg value="-view" />
<arg value="myviewname" />
<arg value="-recommended"/>
</exec>
As an aside. Did you have a Java question?
Andrew T.
benoit.beland@gmail.com - 21 Feb 2007 14:36 GMT
Thanks, it worked.
As for the type of question, sorry but I couldn't find a more specific
usenet group and with the level of activity in here, thought somebody
would know!
> On Feb 21, 8:07 am, benoit.bel...@gmail.com wrote:
> ...
[quoted text clipped - 22 lines]
>
> Andrew T.