From 5aeff6518e9672213e587dd2320c68f0aa2047d4 Mon Sep 17 00:00:00 2001 From: Anton Nesterov Date: Sat, 11 Feb 2023 17:24:25 +0300 Subject: [PATCH] cleanup: remove logs --- mod.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/mod.ts b/mod.ts index 2b6b44a..44200df 100644 --- a/mod.ts +++ b/mod.ts @@ -134,7 +134,6 @@ export async function* githubPick( export async function* githubPickFiles( { repo, version, pick }: GithubPickOptions, ): ReturnType { - console.log(`https://github.com/${repo}/archive/refs/tags/${version}.tar.gz`); const targz = await fetch( `https://github.com/${repo}/archive/refs/tags/${version}.tar.gz`, );