From e6a982bfd65f2c05c13de59bb40baba19860eb0c Mon Sep 17 00:00:00 2001 From: Mati Q Date: Wed, 11 May 2022 17:54:56 +0430 Subject: [PATCH] disable pod install in postinstall --- bin/postInstall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/postInstall b/bin/postInstall index af540d22..49078da9 100755 --- a/bin/postInstall +++ b/bin/postInstall @@ -24,7 +24,7 @@ const os = require("os") { command: "jetify" }, // on iOS, make sure our native modules are installed - { command: "pod install", cwd: "ios", onlyPlatforms: ["darwin"] }, + //{ command: "pod install", cwd: "ios", onlyPlatforms: ["darwin"] }, ] .filter(({ onlyPlatforms }) => !onlyPlatforms || onlyPlatforms.includes(os.platform())) .forEach((commandAndOptions) => {