From e86987a1e9fb03b4d5dd5447da16361fb59b212f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 9 Jan 2024 19:02:02 +0100 Subject: [PATCH] Remove debug line --- dist/index.js | 1 - src/index.ts | 2 -- 2 files changed, 3 deletions(-) diff --git a/dist/index.js b/dist/index.js index 7ed5c28..798ea7a 100644 --- a/dist/index.js +++ b/dist/index.js @@ -12144,7 +12144,6 @@ async function fetchAutoCacher() { 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). const last_path = paths.at(-2); - console.log(`stdout: ${last_path}`); return `${last_path}/bin/magic-nix-cache`; } async function setUpAutoCache() { diff --git a/src/index.ts b/src/index.ts index 19d1866..4542dab 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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). const last_path = paths.at(-2); - console.log(`stdout: ${last_path}`); - return `${last_path}/bin/magic-nix-cache`; }