We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d5a521 commit 019c7b8Copy full SHA for 019c7b8
1 file changed
src/core/func-core-tools.ts
@@ -92,11 +92,9 @@ async function getInstalledSystemCoreToolsVersion(): Promise<number | undefined>
92
93
function getDownloadedCoreToolsVersion(targetVersion: number): string | undefined {
94
const folder = getCoreToolsFolder(targetVersion);
95
- console.log("DOWNLOAD", folder);
96
if (!fs.existsSync(folder)) {
97
return undefined;
98
}
99
- console.log("Ok folder exists");
100
101
const versionFile = path.join(folder, VERSION_FILE);
102
if (!fs.existsSync(versionFile)) {
0 commit comments