Remove debug line

This commit is contained in:
Eelco Dolstra 2024-01-09 19:02:02 +01:00
parent bbbaf0c54d
commit e86987a1e9
2 changed files with 0 additions and 3 deletions

1
dist/index.js generated vendored
View file

@ -12144,7 +12144,6 @@ async function fetchAutoCacher() {
const paths = stdout.split(os$2.EOL); const paths = stdout.split(os$2.EOL);
// Since the export is in reverse topologically sorted order, magic-nix-cache is always the penultimate entry in the list (the empty string left by split being the last). // Since the export is in reverse topologically sorted order, magic-nix-cache is always the penultimate entry in the list (the empty string left by split being the last).
const last_path = paths.at(-2); const last_path = paths.at(-2);
console.log(`stdout: ${last_path}`);
return `${last_path}/bin/magic-nix-cache`; return `${last_path}/bin/magic-nix-cache`;
} }
async function setUpAutoCache() { async function setUpAutoCache() {

View file

@ -69,8 +69,6 @@ async function fetchAutoCacher() {
// Since the export is in reverse topologically sorted order, magic-nix-cache is always the penultimate entry in the list (the empty string left by split being the last). // Since the export is in reverse topologically sorted order, magic-nix-cache is always the penultimate entry in the list (the empty string left by split being the last).
const last_path = paths.at(-2); const last_path = paths.at(-2);
console.log(`stdout: ${last_path}`);
return `${last_path}/bin/magic-nix-cache`; return `${last_path}/bin/magic-nix-cache`;
} }