diff --git a/dist/index.js b/dist/index.js index 33dc3c9..697ab12 100644 --- a/dist/index.js +++ b/dist/index.js @@ -12207,11 +12207,12 @@ async function setUpAutoCache() { }); }); }); - // Start the server. Once it is ready, it will notify us via the notification server. + // Start tailing the daemon log. const outputPath = `${daemonDir}/daemon.log`; const output = openSync(outputPath, 'a'); const log = tailLog(daemonDir); const netrc = await netrcPath(); + // Start the server. Once it is ready, it will notify us via the notification server. const daemon = spawn(daemonBin, [ '--startup-notification-url', `http://127.0.0.1:${notifyPort}`, '--listen', coreExports.getInput('listen'), diff --git a/src/index.ts b/src/index.ts index f7cf79d..d7bb51c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -141,12 +141,13 @@ async function setUpAutoCache() { }); }); - // Start the server. Once it is ready, it will notify us via the notification server. + // Start tailing the daemon log. const outputPath = `${daemonDir}/daemon.log`; const output = openSync(outputPath, 'a'); const log = tailLog(daemonDir); const netrc = await netrcPath(); + // Start the server. Once it is ready, it will notify us via the notification server. const daemon = spawn( daemonBin, [