<exec dir="." executable="osc" failonerror="true" failifexecutionfails="true">  
    <arg line="-A ${obs.apiurl}/>
</exec>

Ant executes the following osc which requires user to enter usename and password if user runs the osc command for the first time. According to ant's documentation, any user input in exec task should end with EOF(-1).

So, how to pass username and password to the executable.

link|improve this question

68% accept rate
1  
see = stackoverflow.com/questions/4176305/… <br> for similar question and possible solution – Rebse Aug 22 '11 at 20:04
see = stackoverflow.com/questions/4176305/… <br> for similar question and possible solution – Rebse Aug 22 '11 at 20:05
feedback

1 Answer

up vote 0 down vote accepted
<input message="Username : " addproperty="account">
</input>
<exec dir="." executable="/bin/sh" inputstring="${account}" failonerror="true" failifexecutionfails="true">
    <arg line="-c osc"/>
</exec>

Here is the solution.

link|improve this answer
which is exactly what the answer i referred to in my comment to your question suggested.. – Rebse Aug 23 '11 at 19:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.