This commit is contained in:
Alex Rodionov 2024-05-30 20:45:14 -07:00
parent 5cea67652c
commit d683b61ff3
6 changed files with 8 additions and 8 deletions

View file

@ -183,9 +183,9 @@ async function startRemoteCacheServer() {
}
core.startGroup("Remote cache server")
core.info(`Remote cache server log file path: ${config.remoteCacheServer.logPath}`)
core.info(`Remote cache server log file path: ${config.remoteCache.logPath}`)
const log = fs.openSync(config.remoteCacheServer.logPath, 'a')
const log = fs.openSync(config.remoteCache.logPath, 'a')
const remoteCacheServer = path.join(__dirname, '..', 'remote-cache-server', 'index.js')
const serverProcess = spawn(process.execPath, [remoteCacheServer], {
detached: true,