Skip to content

Commit

Permalink
remove logs and rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-shibanov committed Dec 5, 2022
1 parent 6cc33f6 commit 487336c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63308,7 +63308,6 @@ function resolveVersionFromManifest(versionSpec, stable, auth, arch, manifest) {
return info === null || info === void 0 ? void 0 : info.resolvedVersion;
}
catch (err) {
console.log('didnt fail');
core.info('Unable to resolve a version from the manifest...');
core.debug(err.message);
}
Expand Down Expand Up @@ -63361,7 +63360,6 @@ function getInfoFromManifest(versionSpec, stable, auth, arch = os_1.default.arch
core.debug('No manifest cached');
manifest = yield getManifest(auth);
}
console.log('didnt fail898998');
core.info(`matching ${versionSpec}...`);
const rel = yield tc.findFromManifest(versionSpec, stable, manifest, arch);
if (rel && rel.files.length > 0) {
Expand Down
3 changes: 1 addition & 2 deletions src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ async function resolveVersionFromManifest(
);
return info?.resolvedVersion;
} catch (err) {
console.log('didnt fail');
core.info('Unable to resolve a version from the manifest...');
core.debug(err.message);
}
Expand Down Expand Up @@ -214,7 +213,7 @@ export async function getInfoFromManifest(
core.debug('No manifest cached');
manifest = await getManifest(auth);
}
console.log('didnt fail898998');

core.info(`matching ${versionSpec}...`);

const rel = await tc.findFromManifest(versionSpec, stable, manifest, arch);
Expand Down

0 comments on commit 487336c

Please sign in to comment.