Skip to content

Commit 00dbb34

Browse files
committedAug 3, 2022
[2/2] Read version of cmdline-tools/latest, if version is correct - use it
1 parent c1ac9c4 commit 00dbb34

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed
 

‎dist/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -8591,9 +8591,9 @@ function findPreinstalledSdkManager() {
85918591
if (result.isFound) {
85928592
const propertiesFile = path.join(ANDROID_SDK_ROOT, 'cmdline-tools', 'latest', 'source.properties');
85938593
if (fs.existsSync(propertiesFile)) {
8594-
const correctRevisionString = `Pkg.Revision=${CMDLINE_TOOLS_VERSION}`;
8595-
console.log(correctRevisionString);
8596-
result.isCorrectVersion = fs.readFileSync(propertiesFile, 'utf8').includes(correctRevisionString);
8594+
result.isCorrectVersion = fs
8595+
.readFileSync(propertiesFile, 'utf8')
8596+
.includes(`Pkg.Revision=${CMDLINE_TOOLS_VERSION}`);
85978597
}
85988598
return result;
85998599
}

‎src/main.ts

+11
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,17 @@ function findPreinstalledSdkManager(): {
4848
result.exePath = getSdkManagerPath('latest')
4949
result.isFound = fs.existsSync(result.exePath)
5050
if (result.isFound) {
51+
const propertiesFile = path.join(
52+
ANDROID_SDK_ROOT,
53+
'cmdline-tools',
54+
'latest',
55+
'source.properties'
56+
)
57+
if (fs.existsSync(propertiesFile)) {
58+
result.isCorrectVersion = fs
59+
.readFileSync(propertiesFile, 'utf8')
60+
.includes(`Pkg.Revision=${CMDLINE_TOOLS_VERSION}`)
61+
}
5162
return result
5263
}
5364
result.exePath = ''

0 commit comments

Comments
 (0)