Skip to content

Commit

Permalink
Fix getting android sdk path logic in local.properties file (#1991)
Browse files Browse the repository at this point in the history
* fix bug

* fix bug

* jslint fixes
  • Loading branch information
GNUGradyn committed Jul 12, 2023
1 parent efb8465 commit 79e49c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension/android/adb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export class AdbHelper {
);
const isExist = fs.existsSync(localPropertiesSdkPath);
if (isExist) {
return localPropertiesSdkPath;
return `"${localPropertiesSdkPath}"`;
}
if (logger) {
logger.warning(
Expand Down

0 comments on commit 79e49c8

Please sign in to comment.