From 89503c278da00f7b71ee258ffa0ce21beee28acc Mon Sep 17 00:00:00 2001 From: Dana Date: Tue, 14 Mar 2023 14:53:40 +0200 Subject: [PATCH] change tests --- src/helpers.ts | 1 + src/index.ts | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.ts b/src/helpers.ts index 55dea01..4521b3a 100644 --- a/src/helpers.ts +++ b/src/helpers.ts @@ -44,6 +44,7 @@ const getPlatform = (os?: string): string => { }; const getBaseUrl = (platform: string, version: string): string => { + console.log(`------https://cli.codecov.io/${platform}/${getUploaderName(platform)}`); return `https://cli.codecov.io/${platform}/${getUploaderName(platform)}`; // https://cli.codecov.io/v0.1.1_test/linux/codecov }; diff --git a/src/index.ts b/src/index.ts index c98f0ea..f77c9ba 100644 --- a/src/index.ts +++ b/src/index.ts @@ -25,7 +25,6 @@ try { https.get(getBaseUrl(platform, uploaderVersion), (res) => { // Image will be stored at this path const filePath = fs.createWriteStream(filename); - console.log('filePath', filePath); res.pipe(filePath); filePath .on('error', (err) => {