From 4666cfefd46e86a4a09065deb499abfce16c528d Mon Sep 17 00:00:00 2001 From: Michele Pozzi <96702967+123mpozzi@users.noreply.github.com> Date: Wed, 19 Jun 2024 18:46:49 +0200 Subject: [PATCH] Update commands order Otherwise NO_FLIPPER was not working on some systems like mine --- example/package.json | 2 +- integration_test/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/package.json b/example/package.json index 3c70ceb9..d4355704 100644 --- a/example/package.json +++ b/example/package.json @@ -10,7 +10,7 @@ "start": "react-native start", "pods": "yarn pods-install || yarn pods-update", "pods-install": "NO_FLIPPER=1 yarn pod-install", - "pods-update": "NO_FLIPPER=1 cd ios; pod update --silent" + "pods-update": "cd ios && NO_FLIPPER=1 pod update --silent" }, "dependencies": { "@react-native-picker/picker": "2.6.1", diff --git a/integration_test/package.json b/integration_test/package.json index e026c693..3320d222 100644 --- a/integration_test/package.json +++ b/integration_test/package.json @@ -15,7 +15,7 @@ "test:ios": "yarn stop-test:ios && yarn start-test:ios", "pods": "yarn pods-install || yarn pods-update", "pods-install": "NO_FLIPPER=1 yarn pod-install", - "pods-update": "NO_FLIPPER=1 cd ios; pod update --silent" + "pods-update": "cd ios && NO_FLIPPER=1 pod update --silent" }, "dependencies": { "cavy": "^4.0.2",