This commit is contained in:
Alex Rodionov 2024-05-30 16:00:40 -07:00
parent 7d89a268e5
commit 1e86b0e0d9
3 changed files with 3 additions and 3 deletions

2
dist/main/index.js vendored
View file

@ -97049,7 +97049,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, 'dist', 'remote-cache-server', 'index.js'), [], {
const serverProcess = fork(path.join(__dirname, '..', 'remote-cache-server', 'index.js'), [], {
stdio: ['ignore', log, log, 'ipc']
})
serverProcess.unref()

File diff suppressed because one or more lines are too long

View file

@ -183,7 +183,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, 'dist', 'remote-cache-server', 'index.js'), [], {
const serverProcess = fork(path.join(__dirname, '..', 'remote-cache-server', 'index.js'), [], {
stdio: ['ignore', log, log, 'ipc']
})
serverProcess.unref()