Skip to content

Commit

Permalink
fix(cli): Properly detect cocoapods on multiple platforms (#3810)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvidas committed Nov 16, 2020
1 parent 085f536 commit 8753694
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/src/tasks/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ export function updateChecks(
() => checkIOSProject(config),
);
} else if (platformName === config.android.name) {
return [];
continue;
} else if (platformName === config.web.name) {
return [];
continue;
} else {
throw `Platform ${platformName} is not valid.`;
}
Expand Down

0 comments on commit 8753694

Please sign in to comment.