From efe2caf3dbd60c49e5b6ead852e8c5ab56474bd7 Mon Sep 17 00:00:00 2001 From: Franck Mamboue Date: Tue, 13 Jul 2021 16:29:41 -0400 Subject: [PATCH] feat: look for Podfile in the source directory too --- packages/platform-ios/src/config/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/platform-ios/src/config/index.ts b/packages/platform-ios/src/config/index.ts index 965f397be..77e131a09 100644 --- a/packages/platform-ios/src/config/index.ts +++ b/packages/platform-ios/src/config/index.ts @@ -54,7 +54,7 @@ export function projectConfig(folder: string, userConfig: IOSProjectParams) { sourceDir, folder, pbxprojPath: path.join(projectPath, 'project.pbxproj'), - podfile: findPodfilePath(projectPath), + podfile: findPodfilePath(projectPath) || findPodfilePath(sourceDir), podspecPath: userConfig.podspecPath || // podspecs are usually placed in the root dir of the library or in the