fix
This commit is contained in:
parent
7ee036d7e7
commit
ad31020598
2 changed files with 2 additions and 2 deletions
2
dist/main/index.js
vendored
2
dist/main/index.js
vendored
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
2
index.js
2
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()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue