Skip to content

Commit 618f9cf

Browse files
authored
chore(cli): use real path to Capacitor iOS Pods (#3249)
1 parent d795fe6 commit 618f9cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/ios/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export function generatePodFile(config: Config, plugins: Plugin[]) {
7878
}
7979

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

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

0 commit comments

Comments
 (0)