From a5e2fbaaa4d3e75e6cf10135569e58826dc29d47 Mon Sep 17 00:00:00 2001 From: Ken Naito Date: Wed, 30 Jan 2019 17:48:26 +0900 Subject: [PATCH] GH-407: remove removing certificates functions in xcode post scripts (#508) * remove functions removing certificates in .app package * remove comments in copy-www-build-step.js --- bin/templates/scripts/cordova/lib/copy-www-build-step.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bin/templates/scripts/cordova/lib/copy-www-build-step.js b/bin/templates/scripts/cordova/lib/copy-www-build-step.js index e05aacf2a..647a49e82 100644 --- a/bin/templates/scripts/cordova/lib/copy-www-build-step.js +++ b/bin/templates/scripts/cordova/lib/copy-www-build-step.js @@ -48,12 +48,7 @@ try { process.exit(2); } -// Code signing files must be removed or else there are -// resource signing errors. shell.rm('-rf', dstWwwDir); -shell.rm('-rf', path.join(dstDir, '_CodeSignature')); -shell.rm('-rf', path.join(dstDir, 'PkgInfo')); -shell.rm('-rf', path.join(dstDir, 'embedded.mobileprovision')); // Copy www dir recursively var code;