We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 199b293 commit b667868Copy full SHA for b667868
lib/commands/run.ts
@@ -33,7 +33,7 @@ export class RunCommandBase implements ICommand {
33
this.platform = this.$devicePlatformsConstants.Android;
34
}
35
36
- const availablePlatforms = this.platform ? [this.platform] : this.$platformsData.availablePlatforms;
+ const availablePlatforms = this.platform ? [this.platform]: _.values<string>(this.$platformsData.availablePlatforms);
37
for (let platform of availablePlatforms) {
38
const platformData = this.$platformsData.getPlatformData(platform, this.$projectData);
39
const platformProjectService = platformData.platformProjectService;
0 commit comments