[ 
https://issues.apache.org/jira/browse/CB-14141?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16599906#comment-16599906
 ] 

ASF GitHub Bot commented on CB-14141:
-------------------------------------

janpio closed pull request #373: CB-14141: Don't duplicate resource files in 
xcodeproj
URL: https://github.com/apache/cordova-ios/pull/373
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/bin/templates/scripts/cordova/lib/prepare.js 
b/bin/templates/scripts/cordova/lib/prepare.js
index de345dd55..0a2daa423 100644
--- a/bin/templates/scripts/cordova/lib/prepare.js
+++ b/bin/templates/scripts/cordova/lib/prepare.js
@@ -497,7 +497,11 @@ function updateFileResources (cordovaProject, locations) {
         let targetPath = path.join(project.resources_dir, target);
         targetPath = path.relative(cordovaProject.root, targetPath);
 
-        project.xcode.addResourceFile(target);
+        if (!fs.existsSync(targetPath)) {
+            project.xcode.addResourceFile(target);
+        } else {
+            events.emit('warn', 'Overwriting existing resource file at ' + 
targetPath);
+        }
 
         resourceMap[targetPath] = src;
     });


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


> Should be able to overwrite CDVLaunchScreen.storyboard with resource-file in 
> config.xml
> ---------------------------------------------------------------------------------------
>
>                 Key: CB-14141
>                 URL: https://issues.apache.org/jira/browse/CB-14141
>             Project: Apache Cordova
>          Issue Type: Improvement
>          Components: cordova-ios
>            Reporter: Darryl Pogue
>            Assignee: Darryl Pogue
>            Priority: Minor
>
> It should be possible to overwrite the CDVLaunchScreen.storyboard file using 
> {{resource-file}} in config.xml, but that has an unfortunate side effect of 
> adding it to the Xcode project twice.
> When installing resources from config.xml {{resource-file}} tags, we should 
> log a warning if the file already exists and skip adding it to the Xcode 
> project.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to