Skip to content

Commit ccf81d0

Browse files
FatmeFatme
Fatme
authored and
Fatme
committed
Merge pull request #929 from NativeScript/fatme/show-pod-install-output
Show the output from "pod install" command
2 parents 412fafa + 8573a20 commit ccf81d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/ios-project-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
429429

430430
private executePodInstall(): IFuture<any> {
431431
this.$logger.info("Installing pods...");
432-
return this.$childProcess.exec("pod install", { cwd: this.platformData.projectRoot });
432+
return this.$childProcess.spawnFromEvent("pod", ["install"], "close", { cwd: this.platformData.projectRoot, stdio: 'inherit' });
433433
}
434434

435435
private prepareFrameworks(pluginPlatformsFolderPath: string, pluginData: IPluginData): IFuture<void> {

0 commit comments

Comments
 (0)