mirror of
https://github.com/DeterminateSystems/magic-nix-cache-action.git
synced 2024-12-26 17:30:34 +01:00
Fixup log aggregation
This commit is contained in:
parent
1402a2dd8f
commit
c5e19708da
2 changed files with 2 additions and 2 deletions
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
|
@ -12181,7 +12181,7 @@ async function setUpAutoCache() {
|
||||||
else {
|
else {
|
||||||
runEnv = process.env;
|
runEnv = process.env;
|
||||||
}
|
}
|
||||||
const output = openSync(`${daemonDir}/parent.log`, 'a');
|
const output = openSync(`${daemonDir}/daemon.log`, 'a');
|
||||||
const launch = spawn(daemonBin, [
|
const launch = spawn(daemonBin, [
|
||||||
'--daemon-dir', daemonDir,
|
'--daemon-dir', daemonDir,
|
||||||
'--listen', coreExports.getInput('listen'),
|
'--listen', coreExports.getInput('listen'),
|
||||||
|
|
|
@ -113,7 +113,7 @@ async function setUpAutoCache() {
|
||||||
runEnv = process.env;
|
runEnv = process.env;
|
||||||
}
|
}
|
||||||
|
|
||||||
const output = openSync(`${daemonDir}/parent.log`, 'a');
|
const output = openSync(`${daemonDir}/daemon.log`, 'a');
|
||||||
const launch = spawn(
|
const launch = spawn(
|
||||||
daemonBin,
|
daemonBin,
|
||||||
[
|
[
|
||||||
|
|
Loading…
Reference in a new issue