Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat: force install pods when installing only pods
  • Loading branch information
szymonrybczak committed Mar 6, 2025
commit ea84bde39c8201fe6a7a485c22b066906bd5f7e6
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const createBuild =
ctx.dependencies,
platformName,
{
forceInstall: args.forcePods,
forceInstall: args.forcePods || args.onlyPods,
newArchEnabled: isAppRunningNewArchitecture,
},
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const createRun =
ctx.dependencies,
platformName,
{
forceInstall: args.forcePods,
forceInstall: args.forcePods || args.onlyPods,
newArchEnabled: isAppRunningNewArchitecture,
},
);
Expand Down
Loading