Skip to content

Commit ae9fd04

Browse files
author
Maxim Lobanov
committed
fix folder converting
1 parent 747f1ad commit ae9fd04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42067,7 +42067,7 @@ class SDKManager {
4206742067
return parsedPackages;
4206842068
}
4206942069
getPackagePath(packageInfo) {
42070-
const relativePath = packageInfo.name.replace(";", "/");
42070+
const relativePath = packageInfo.name.replace(/;/g, "/");
4207142071
return path_1.default.join(this.androidHome, relativePath);
4207242072
}
4207342073
isPackageInstalled(packageInfo) {

src/sdk-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class SDKManager {
2828
}
2929

3030
public getPackagePath(packageInfo: AndroidPackageInfo): string {
31-
const relativePath = packageInfo.name.replace(";", "/");
31+
const relativePath = packageInfo.name.replace(/;/g, "/");
3232
return path.join(this.androidHome, relativePath);
3333
}
3434

0 commit comments

Comments
 (0)