Skip to content

Commit d49b666

Browse files
authored
fix: use correct path to emulator executable (#5663)
1 parent 44ff0c5 commit d49b666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/common/mobile/android/android-virtual-device-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export class AndroidVirtualDeviceService
331331
private getConfigurationError(): string {
332332
const pathToEmulatorExecutable = this.$hostInfo.isWindows
333333
? `${this.pathToEmulatorExecutable}.exe`
334-
: this.pathToAndroidExecutable;
334+
: this.pathToEmulatorExecutable;
335335
if (!this.$fs.exists(pathToEmulatorExecutable)) {
336336
return "Unable to find the path to emulator executable and will not be able to start the emulator. Searched paths: [$ANDROID_HOME/tools/emulator, $ANDROID_HOME/emulator/emulator]";
337337
}

0 commit comments

Comments
 (0)