This is an automated email from the ASF dual-hosted git repository.
erisu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-ios.git
The following commit(s) were added to refs/heads/master by this push:
new fd93156f chore: remove long-unused codeSignResourceRules option (#1308)
fd93156f is described below
commit fd93156f454aeeec30f7d4e23992e4ab23d0e60d
Author: Darryl Pogue <[email protected]>
AuthorDate: Mon Apr 24 09:46:59 2023 -0700
chore: remove long-unused codeSignResourceRules option (#1308)
---
lib/build.js | 4 ----
1 file changed, 4 deletions(-)
diff --git a/lib/build.js b/lib/build.js
index a41057ae..e07f90c7 100644
--- a/lib/build.js
+++ b/lib/build.js
@@ -30,7 +30,6 @@ const projectFile = require('./projectFile');
const buildConfigProperties = [
'codeSignIdentity',
- 'codeSignResourceRules',
'provisioningProfile',
'developmentTeam',
'packageType',
@@ -176,9 +175,6 @@ module.exports.run = function (buildOpts) {
extraConfig += `CODE_SIGN_IDENTITY =
${buildOpts.codeSignIdentity}\n`;
extraConfig += `CODE_SIGN_IDENTITY[sdk=iphoneos*] =
${buildOpts.codeSignIdentity}\n`;
}
- if (buildOpts.codeSignResourceRules) {
- extraConfig += `CODE_SIGN_RESOURCE_RULES_PATH =
${buildOpts.codeSignResourceRules}\n`;
- }
if (buildOpts.provisioningProfile) {
if (typeof buildOpts.provisioningProfile === 'string') {
extraConfig += `PROVISIONING_PROFILE =
${buildOpts.provisioningProfile}\n`;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]