From 3e2ec0d09ec372be7de774f7d7dc113ec57db317 Mon Sep 17 00:00:00 2001 From: Thomas Vidas Date: Mon, 16 Nov 2020 15:22:24 -0500 Subject: [PATCH] Fix not checking cocoapod existence correctly on npx cap sync --- cli/src/tasks/update.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/tasks/update.ts b/cli/src/tasks/update.ts index c2c9ca734..9e5fbc6ec 100644 --- a/cli/src/tasks/update.ts +++ b/cli/src/tasks/update.ts @@ -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.`; }