Skip to content

Commit e259b42

Browse files
committed
feat: force install when using --only-pods
1 parent 592ca21 commit e259b42

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

packages/cli-platform-apple/src/commands/buildCommand/createBuild.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const createBuild =
3939
ctx.dependencies,
4040
platformName,
4141
{
42-
forceInstall: args.forcePods,
42+
forceInstall: args.forcePods || args.onlyPods,
4343
newArchEnabled: isAppRunningNewArchitecture,
4444
},
4545
);

packages/cli-platform-apple/src/commands/runCommand/createRun.ts

+2-6
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,7 @@ const createRun =
7979
let {packager, port} = args;
8080
let installedPods = false;
8181
// 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) {
8783
const isAppRunningNewArchitecture = platformConfig.sourceDir
8884
? await getArchitecture(platformConfig.sourceDir)
8985
: undefined;
@@ -94,7 +90,7 @@ const createRun =
9490
ctx.dependencies,
9591
platformName,
9692
{
97-
forceInstall: args.forcePods,
93+
forceInstall: args.forcePods || args.onlyPods,
9894
newArchEnabled: isAppRunningNewArchitecture,
9995
},
10096
);

0 commit comments

Comments
 (0)