mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-07 13:12:39 +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) {
|
||||
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);
|
||||
|
|
Loading…
Reference in a new issue