diff --git a/lib/services/ios-project-service.ts b/lib/services/ios-project-service.ts index 606d881832..dd5725b9d9 100644 --- a/lib/services/ios-project-service.ts +++ b/lib/services/ios-project-service.ts @@ -429,7 +429,7 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ private executePodInstall(): IFuture { this.$logger.info("Installing pods..."); - return this.$childProcess.exec("pod install", { cwd: this.platformData.projectRoot }); + return this.$childProcess.spawnFromEvent("pod", ["install"], "close", { cwd: this.platformData.projectRoot, stdio: 'inherit' }); } private prepareFrameworks(pluginPlatformsFolderPath: string, pluginData: IPluginData): IFuture {