Skip to content

Commit

Permalink
Fix copying PrivacyManifest
Browse files Browse the repository at this point in the history
  • Loading branch information
dpogue committed Feb 28, 2024
1 parent a866e5c commit 74c3601
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,7 @@ class ProjectCreator {
// like it should).
fs.symlinkSync(cordovaLibPathSrc, cordovaLibPathDest);
} else {
for (const p of ['include', 'Classes', 'CordovaLib.xcodeproj/project.pbxproj']) {
fs.copySync(path.join(cordovaLibPathSrc, p), path.join(cordovaLibPathDest, p));
}
fs.copySync(cordovaLibPathSrc, cordovaLibPathDest);
}
}

Expand Down

0 comments on commit 74c3601

Please sign in to comment.