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 9cca64c commit 8266851Copy full SHA for 8266851
example/create_app.py
@@ -45,10 +45,11 @@ def setup_react_native_app():
45
46
# If on iOS, run pod install
47
if platform.system() == "Darwin":
48
- print("Running pod install")
49
- os.chdir("ios")
50
- os.system("pod install")
51
- os.chdir("..")
+ if choice.lower() == "react":
+ print("Running pod install")
+ os.chdir("ios")
+ os.system("pod install")
52
+ os.chdir("..")
53
54
if __name__ == "__main__":
55
setup_react_native_app()
0 commit comments