Skip to content

Commit ec539bb

Browse files
Fix emulate command (#2743)
During refactoring we've decided to pass the whole `$options` object from commands to services. However we've forgotten to change the emulate command. Pass correct argument which will fix the issue.
1 parent 8b730f3 commit ec539bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/commands/emulate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class EmulateCommandBase {
2727
keyStorePassword: this.$options.keyStorePassword,
2828
keyStorePath: this.$options.keyStorePath
2929
};
30-
return this.$platformService.emulatePlatform(args[0], appFilesUpdaterOptions, emulateOptions, this.$projectData, this.$options.provision);
30+
return this.$platformService.emulatePlatform(args[0], appFilesUpdaterOptions, emulateOptions, this.$projectData, this.$options);
3131
}
3232
}
3333

0 commit comments

Comments
 (0)