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) => {