From b59b2f450fd616023d8f47398492239176af535f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 23 Feb 2024 19:51:28 +0100 Subject: [PATCH] Comment --- dist/index.js | 3 ++- src/index.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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, [