mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 21:35:04 +02:00
Revert "use quoted path on windows for spaced paths"
This reverts commit 687836ff96
.
This commit is contained in:
parent
0bf5526d97
commit
cfe14aeb06
1 changed files with 2 additions and 8 deletions
|
@ -607,15 +607,9 @@ app.on('ready', function() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dsPath && acPath) {
|
if (dsPath && acPath) {
|
||||||
var logPathArg = logPath;
|
domainServer = new Process('domain-server', dsPath, ["--get-temp-name"], 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);
|
|
||||||
acMonitor = new ACMonitorProcess('ac-monitor', acPath, ['-n6',
|
acMonitor = new ACMonitorProcess('ac-monitor', acPath, ['-n6',
|
||||||
'--log-directory', logPathArg,
|
'--log-directory', logPath,
|
||||||
'--http-status-port', httpStatusPort], httpStatusPort, logPath);
|
'--http-status-port', httpStatusPort], httpStatusPort, logPath);
|
||||||
homeServer = new ProcessGroup('home', [domainServer, acMonitor]);
|
homeServer = new ProcessGroup('home', [domainServer, acMonitor]);
|
||||||
logWindow = new LogWindow(acMonitor, domainServer);
|
logWindow = new LogWindow(acMonitor, domainServer);
|
||||||
|
|
Loading…
Reference in a new issue