The ant manual, of all things, says the following:
It is highly recommended to avoid the line version when possible. Ant
will try to split the command
line in a way similar to what a (Unix) shell would do, but may
create something that is v
different from what you expect under some circumstances.
Examples
<arg value="-l -a"/>
is a single command-line argument containing a space character, not
separate commands "-l" and "-a".
<arg line="-l -a"/>
This is a command line with two separate arguments, "-l" and "-a".
Using a separate <arg value... for each argument makes the space issue to
away. See the 'exec' task and look for the link to command line arguements.
Peters, John wrote:
>
> Hello,
> I'm trying to pass quotes to the arg line for a parameter that has
> spaces in it.
> I've tried " but that didn't seem to work.
> Also tried "" \".
> Any suggestions?
>
> <target name="call_tfsbuild" depends="process_proj">
> <exec executable="${os.tfsbuild}" failonerror="true">
> <arg line="start ${os.tfsmstr} ${cc.vob} ${cc.proj}
> /msBuildArguments:/p:LabelComment=Label for Build at ${local.time.start}
> " />
> </exec>
> </target>
>
>
>
> Blue Cross Blue Shield of Florida, Inc., and its subsidiary and affiliate
> companies are not responsible for errors or omissions in this e-mail
> message. Any personal comments made in this e-mail do not reflect the
> views of Blue Cross Blue Shield of Florida, Inc. The information
> contained in this document may be confidential and intended solely for the
> use of the individual or entity to whom it is addressed. This document
> may contain material that is privileged or protected from disclosure under
> applicable law. If you are not the intended recipient or the individual
> responsible for delivering to the intended recipient, please (1) be
> advised that any use, dissemination, forwarding, or copying of this
> document IS STRICTLY PROHIBITED; and (2) notify sender immediately by
> telephone and destroy the document. THANK YOU.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
--
View this message in context:
http://www.nabble.com/Pass-Quotes-to-arg-line-tp18475283p18487288.html
Sent from the Ant - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]