Skip to content

Commit

Permalink
prevent running pod tools in non-mac environments
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandkakonyi committed Oct 10, 2024
1 parent af464d6 commit 5a70e80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"ios": "react-native run-ios",
"start": "react-native start",
"pods": "yarn pods-install || yarn pods-update",
"pods-install": "NO_FLIPPER=1 yarn pod-install",
"pods-update": "cd ios && NO_FLIPPER=1 pod update --silent"
"pods-install": "[ \"$(uname)\" != Darwin ] || NO_FLIPPER=1 yarn pod-install",
"pods-update": "[ \"$(uname)\" != Darwin ] || cd ios && NO_FLIPPER=1 pod update --silent"
},
"dependencies": {
"@react-native-picker/picker": "2.6.1",
Expand Down

0 comments on commit 5a70e80

Please sign in to comment.