Skip to content

Commit

Permalink
hotfix: fix avd location loookup for device lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kmagiera committed Sep 25, 2024
1 parent 8943b87 commit 5fd14d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class AndroidEmulatorDevice extends DeviceBase {
}

get lockFilePath(): string {
const avdDirectory = getAvdDirectoryLocation();
const avdDirectory = getAvdDirectoryLocation(this.avdId);
const pidFile = path.join(avdDirectory, `${this.avdId}.avd`, "lock.pid");
return pidFile;
}
Expand Down

0 comments on commit 5fd14d6

Please sign in to comment.