From 74c360180b03d2fb46db6fd807aa04c66a087342 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Tue, 27 Feb 2024 23:12:39 -0800 Subject: [PATCH] Fix copying PrivacyManifest --- lib/create.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/create.js b/lib/create.js index 7a15ee84d0..0f638f13cb 100755 --- a/lib/create.js +++ b/lib/create.js @@ -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); } }