We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ac1d50 commit 03dcb5eCopy full SHA for 03dcb5e
cli/src/ios/update.ts
@@ -140,7 +140,8 @@ end`,
140
await writeFile(podfilePath, podfileContent, { encoding: 'utf-8' });
141
142
const podPath = await config.ios.podPath;
143
- const useBundler = podPath.startsWith('bundle');
+ const useBundler =
144
+ podPath.startsWith('bundle') && (await isInstalled('bundle'));
145
const podCommandExists = await isInstalled('pod');
146
if (useBundler || podCommandExists) {
147
if (useBundler) {
0 commit comments