From 78a78ec070dea70ace7a3b2a2c19caebe474f828 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Wed, 9 Dec 2015 14:43:46 +0300 Subject: [PATCH] run program support under linux --- dlangide-monod-linux.dproj | 1 - src/ddebug/common/nodebug.d | 7 ++++++- 2 files changed, 6 insertions(+), 2 deletions(-) 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) {