From cfe14aeb06f29a4b1cc5fc56eea58c941e36c0f7 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 20 Jan 2016 09:48:36 -0800 Subject: [PATCH] Revert "use quoted path on windows for spaced paths" This reverts commit 687836ff96e09f107be6e88de929be5e13945a10. --- server-console/src/main.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/server-console/src/main.js b/server-console/src/main.js index 62f7be254b..10918cbb82 100644 --- a/server-console/src/main.js +++ b/server-console/src/main.js @@ -607,15 +607,9 @@ app.on('ready', function() { } if (dsPath && acPath) { - var logPathArg = logPath; - if (osType == 'Windows_NT') { - // surround the log path in quotes on windows in case it has spaces - logPathArg = '"' + logPath + '"'; - } - - domainServer = new Process('domain-server', dsPath, ['--get-temp-name'], logPath); + domainServer = new Process('domain-server', dsPath, ["--get-temp-name"], logPath); acMonitor = new ACMonitorProcess('ac-monitor', acPath, ['-n6', - '--log-directory', logPathArg, + '--log-directory', logPath, '--http-status-port', httpStatusPort], httpStatusPort, logPath); homeServer = new ProcessGroup('home', [domainServer, acMonitor]); logWindow = new LogWindow(acMonitor, domainServer);