Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-407: remove removing certificates functions in xcode post scripts #508

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
remove functions removing certificates in .app package
knaito-asial committed Jan 30, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 2c7ac051db19457207b32e3745ffeea147533027
6 changes: 3 additions & 3 deletions bin/templates/scripts/cordova/lib/copy-www-build-step.js
Original file line number Diff line number Diff line change
@@ -51,9 +51,9 @@ try {
// 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'));
// 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;