From 725ea5449e76188863000a7cd1f31823d576a35c Mon Sep 17 00:00:00 2001 From: Cedric Guillemet <1312968+CedricGuillemet@users.noreply.github.com> Date: Tue, 18 Jun 2024 10:33:54 +0200 Subject: [PATCH] test w/o pod install --- Apps/BRNPlayground/postinstall.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Apps/BRNPlayground/postinstall.js b/Apps/BRNPlayground/postinstall.js index 45d723ca1..093c07cfb 100644 --- a/Apps/BRNPlayground/postinstall.js +++ b/Apps/BRNPlayground/postinstall.js @@ -28,13 +28,13 @@ function postInstall() { exec("npm install --legacy-peer-deps", { cwd: "../../Modules/@babylonjs/react-native", }); - +/* if (os.platform() === "darwin") { iosCMake(); console.log(chalk.black.bgCyan("Installing iOS pods...")); exec("pod install", { cwd: "ios" }); - } + }*/ } postInstall();