diff --git a/dlangide-monod-linux.dproj b/dlangide-monod-linux.dproj
index 70f2bc5..514e567 100644
--- a/dlangide-monod-linux.dproj
+++ b/dlangide-monod-linux.dproj
@@ -213,7 +213,6 @@
-
diff --git a/src/ddebug/common/nodebug.d b/src/ddebug/common/nodebug.d
index 3d5c650..88b8e40 100644
--- a/src/ddebug/common/nodebug.d
+++ b/src/ddebug/common/nodebug.d
@@ -80,7 +80,6 @@ class ProgramExecutionNoDebug : Thread, ProgramExecution {
// external console support
if (!_externalConsole.empty) {
string cmdline = escapeShellCommand(params);
- cmdline = escapeShellFileName(cmdline);
params.length = 0;
params ~= _externalConsole;
params ~= "-e";
@@ -90,6 +89,12 @@ class ProgramExecutionNoDebug : Thread, ProgramExecution {
File newstdin;
File newstdout;
File newstderr;
+ version (Windows) {
+ } else {
+ newstdin = stdin;
+ newstdout = stdout;
+ newstderr = stderr;
+ }
try {
_pid = spawnProcess(params, newstdin, newstdout, newstderr, null, Config.none, _workDir);
} catch (Exception e) {