Revert "use quoted path on windows for spaced paths"

This reverts commit 687836ff96.
This commit is contained in:
Stephen Birarda 2016-01-20 09:48:36 -08:00
parent 0bf5526d97
commit cfe14aeb06

View file

@ -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);