We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 439f769 commit 3905c91Copy full SHA for 3905c91
Apps/Playground/postinstall.js
@@ -12,7 +12,7 @@ function exec(cmd, options) {
12
function iosCMake() {
13
console.log(chalk.black.bgCyan("Running CMake for iOS..."));
14
exec("cmake -B ../../Build/iOS -G Xcode", {
15
- cwd: "node_modules/@babylonjs/react-native-iosandroid/ios",
+ cwd: "node_modules/@babylonjs/react-native/ios",
16
});
17
}
18
@@ -32,9 +32,9 @@ function postInstall() {
32
if (os.platform() === "darwin") {
33
iosCMake();
34
35
- exec("npm install && npx gulp buildIOSRNTA", {
+ /*exec("npm install && npx gulp buildIOSRNTA", {
36
cwd: "../../Package",
37
- });
+ });*/
38
39
console.log(chalk.black.bgCyan("Installing iOS pods..."));
40
exec("pod install", { cwd: "ios" });
0 commit comments