File tree 2 files changed +3
-7
lines changed
packages/cli-platform-apple/src/commands
2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const createBuild =
39
39
ctx . dependencies ,
40
40
platformName ,
41
41
{
42
- forceInstall : args . forcePods ,
42
+ forceInstall : args . forcePods || args . onlyPods ,
43
43
newArchEnabled : isAppRunningNewArchitecture ,
44
44
} ,
45
45
) ;
Original file line number Diff line number Diff line change @@ -79,11 +79,7 @@ const createRun =
79
79
let { packager, port} = args ;
80
80
let installedPods = false ;
81
81
// check if pods need to be installed
82
- if (
83
- platformConfig . automaticPodsInstallation ||
84
- args . forcePods ||
85
- args . onlyPods
86
- ) {
82
+ if ( platformConfig . automaticPodsInstallation || args . forcePods ) {
87
83
const isAppRunningNewArchitecture = platformConfig . sourceDir
88
84
? await getArchitecture ( platformConfig . sourceDir )
89
85
: undefined ;
@@ -94,7 +90,7 @@ const createRun =
94
90
ctx . dependencies ,
95
91
platformName ,
96
92
{
97
- forceInstall : args . forcePods ,
93
+ forceInstall : args . forcePods || args . onlyPods ,
98
94
newArchEnabled : isAppRunningNewArchitecture ,
99
95
} ,
100
96
) ;
You can’t perform that action at this time.
0 commit comments