Archive: Compile Problem (Command Line)


Compile Problem (Command Line)
Hello, I use this

Exec"${NSISDIR}\makensisw.exe$NSIFILE"

When "$NSIFILE = C:\x.nsi" there is no problem.
But when "$NSIFILE = C:\Dokumente und Einstellungen\x.nsi"
there is an Errormessage: " Can't open script "C:\Dokumente" "

So I have a problem with the space character.

Need help. Thanks

Try this,

Exec `${NSISDIR}\makensisw.exe "$NSIFILE"`


Ok, thanks ;)


Or even:
Exec `"${NSISDIR}\makensisw.exe" "$NSIFILE"`

Stu