Update main.js

This commit is contained in:
rafael-aero
2021-08-25 11:33:32 +02:00
parent 8b03a6b006
commit efec886f73

View File

@@ -320,7 +320,7 @@ function startAspCoreBackend(electronPort) {
if (manifestJsonFile.hasOwnProperty('detachedProcess')) {
detachedProcess = manifestJsonFile.detachedProcess;
if (detachedProcess) {
stdioopt = 'ignore';
stdioopt = ['ignore', 'pipe', 'pipe'];
}
}
@@ -376,7 +376,7 @@ function startAspCoreBackendWithWatch(electronPort) {
if (manifestJsonFile.hasOwnProperty('detachedProcess')) {
detachedProcess = manifestJsonFile.detachedProcess;
if (detachedProcess) {
stdioopt = 'ignore';
stdioopt = ['ignore', 'pipe', 'pipe'];
}
}