From ad310205981dfff1e9c5aec1738e16395b226d59 Mon Sep 17 00:00:00 2001 From: Alex Rodionov Date: Thu, 30 May 2024 15:37:56 -0700 Subject: [PATCH] fix --- dist/main/index.js | 2 +- index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/main/index.js b/dist/main/index.js index 7848484..6de4033 100644 --- a/dist/main/index.js +++ b/dist/main/index.js @@ -97050,7 +97050,7 @@ async function startRemoteCacheServer() { core.info(`Remote cache server log file path: ${config.remoteCacheServer.logPath}`) const log = fs.openSync(config.remoteCacheServer.logPath, 'a') const serverProcess = fork(__nccwpck_require__.ab + "remote-cache-server.js", [], { - stdio: ['ignore', log, log] + stdio: ['ignore', log, log, 'ipc'] }) serverProcess.unref() diff --git a/index.js b/index.js index d927c52..a2d451e 100644 --- a/index.js +++ b/index.js @@ -184,7 +184,7 @@ async function startRemoteCacheServer() { core.info(`Remote cache server log file path: ${config.remoteCacheServer.logPath}`) const log = fs.openSync(config.remoteCacheServer.logPath, 'a') const serverProcess = fork(path.join(__dirname, 'remote-cache-server.js'), [], { - stdio: ['ignore', log, log] + stdio: ['ignore', log, log, 'ipc'] }) serverProcess.unref()