@capacitor/cli 6.2.0 → 6.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
Binary file
Binary file
@@ -77,7 +77,7 @@ async function updatePodfile(config, plugins, deployment) {
77
77
  end`, `require_relative '${relativeCapacitoriOSPath}/scripts/pods_helpers'`);
78
78
  await (0, utils_fs_1.writeFile)(podfilePath, podfileContent, { encoding: 'utf-8' });
79
79
  const podPath = await config.ios.podPath;
80
- const useBundler = podPath.startsWith('bundle');
80
+ const useBundler = podPath.startsWith('bundle') && (await (0, subprocess_1.isInstalled)('bundle'));
81
81
  const podCommandExists = await (0, subprocess_1.isInstalled)('pod');
82
82
  if (useBundler || podCommandExists) {
83
83
  if (useBundler) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/cli",
3
- "version": "6.2.0",
3
+ "version": "6.2.1",
4
4
  "description": "Capacitor: Cross-platform apps with JavaScript and the web",
5
5
  "homepage": "https://capacitorjs.com",
6
6
  "author": "Ionic Team <hi@ionic.io> (https://ionic.io)",