Julien Sobrier wrote:
> Hello,
> I don't know exactly what I screwed up, but NAnt is not working on my PC
> anymore. I have Fedora Core 4, NAnt 0.85 RC3 and Mono 1.1.9.2
>
> Here is the error message:
> The NAnt configuration file (/usr/share/NAnt/bin/NAnt.exe.config) does
> not have a node for t
Kedziora, Rebecca wrote:
Ah... the " worked!
Some places I don't have problems with the spaces in the dir name like
when using the move task, but using it in a redirection of the exec
task caused me grief.
The reason for this is that the move task is handled internally by NAnt,
but the re
Title: Message
I think the underlying issue here is that
encasing a folder/file target in a move with quotes behind the scenes won’t
cause any issues, so that is what the developers did, but if you encase an
entire exec command line in quotes in the task’s code, then you would
probably stil
Title: Message
Ah...
the " worked!
Some
places I don't have problems with the spaces in the dir name like when using the
move task, but using it in a redirection of the exec task caused me
grief.
Thanks
-Original Message-From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECT
Title: Exec program can't handle dir name with spaces
Try to use quotes. Hope
this helps.
"${buildlog.dir}\${source.changes.log.filename}"
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kedziora, Rebecca
Sent: Thursday, November 03, 2005
4:55 PM
To:
nant
Title: Exec program can't handle dir name with spaces
I’m not sure if this will work, but
attempt to surround the last portion of your commandline attribute with “"”
I haven’t tried this myself, but I
think it should solve your problems…
Example:
RE: [Nant-users] Exec program can't handle dir name with spaces
Title: Exec program can't handle dir name with spaces
This is a command line
issue. You're essentially
executing:
C:\>changes.cmd root
branch tstamp > c:\builds\smc management center\logfiles\filename
So it's not
reading the whole path for the pipe, just the "c:\builds\smc", and
then
Title: Exec program can't handle dir name with spaces
A bug or not with nant .85 rc 3?
I am executing a program using the exec task as shown below:
[Nant-users] Pass properties
Hi,
if I pass some properties from one nant skript to another then I can
provide a list of properties. I set the argument inheritall to false
when I call the nant task. But how can I manage things when I want to
pass existing properties that don't have to be created with the call?
Like this?