Skip to content

Commit 34446f6

Browse files
committed
Fix bad path for #45
1 parent 63f6bdd commit 34446f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/project/src/ios/project.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ export class IosProject {
448448
throw new Error('Unable to get plist filename to update');
449449
}
450450

451-
if (!await pathExists(join(this.iosProjectRoot(), filename))) {
451+
if (!await pathExists(filename)) {
452452
await writeFile(filename, defaultInfoPlist);
453453
}
454454

0 commit comments

Comments
 (0)