Skip to content

Commit

Permalink
make commands work in directories with spaces when using a response f…
Browse files Browse the repository at this point in the history
…ile as well, Issue 41387

git-svn-id: https://svn.apache.org/repos/asf/ant/antlibs/dotnet/trunk@498915 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
bodewig committed Jan 23, 2007
1 parent a967dff commit 0f117c3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changes.xml
Expand Up @@ -22,6 +22,11 @@
</properties>

<release version="SVN trunk" date="unpublished">
<action type="fix" issue="41387">
The compilation tasks failed if the source files resided in a
directory with spaces in its full path and a response file was
used.
</action>
</release>

<release version="1.0" date="2006-11-06">
Expand Down
16 changes: 15 additions & 1 deletion src/main/org/apache/ant/dotnet/NetCommand.java
Expand Up @@ -42,6 +42,7 @@
import org.apache.tools.ant.taskdefs.Execute;
import org.apache.tools.ant.taskdefs.ExecuteStreamHandler;
import org.apache.tools.ant.taskdefs.LogStreamHandler;
import org.apache.tools.ant.taskdefs.condition.Os;
import org.apache.tools.ant.types.Commandline;

/**
Expand All @@ -58,6 +59,12 @@ public class NetCommand {

private static final FileUtils FILE_UTILS = FileUtils.getFileUtils();

private static final boolean IS_WINDOWS;

static {
IS_WINDOWS = Os.isFamily("windows");
}

/**
* owner project
*/
Expand Down Expand Up @@ -351,7 +358,14 @@ private void setExecutableCommandLine() {
PrintWriter out = new PrintWriter(new BufferedOutputStream(fos));
//start at 1 because element 0 is the executable name
for (int i = 1; i < commands.length; ++i) {
out.println(commands[i]);
if (IS_WINDOWS && commands[i].indexOf(" ") > -1) {
String q = commands[i].indexOf("\"") > -1 ? "'" : "\"";
out.print(q);
out.print(commands[i]);
out.println(q);
} else {
out.println(commands[i]);
}
}
out.flush();
out.close();
Expand Down

0 comments on commit 0f117c3

Please sign in to comment.