Skip to content

Commit

Permalink
chore(cli): use real path to Capacitor iOS Pods (#3249)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile committed Jul 13, 2020
1 parent d795fe6 commit 618f9cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/ios/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export function generatePodFile(config: Config, plugins: Plugin[]) {
}

const podfilePath = join(config.app.rootDir, 'ios', 'App');
const relativeCapacitoriOSPath = convertToUnixPath(relative(podfilePath, capacitoriOSPath));
const relativeCapacitoriOSPath = convertToUnixPath(relative(podfilePath, realpathSync(capacitoriOSPath)));

const capacitorPlugins = plugins.filter(p => getPluginType(p, platform) === PluginType.Core);
const pods = capacitorPlugins
Expand Down

0 comments on commit 618f9cf

Please sign in to comment.