Skip to content

Commit 5dcb217

Browse files
authored
fix(ios): link to AppleWWDRCA (#13747)
1 parent c2fa9f7 commit 5dcb217

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

iphone/cli/commands/_build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1900,7 +1900,7 @@ iOSBuilder.prototype.validate = function validate(logger, config, cli) {
19001900
// make sure they have Apple's WWDR cert installed
19011901
if(!this.iosInfo.certs.wwdr){
19021902
logger.error(__('WWDR Intermediate Certificate not found')+'\n');
1903-
logger.log(__('Download and install the certificate from %s','http://developer.apple.com/certificationauthority/AppleWWDRCA.cer'.cyan)+'\n');
1903+
logger.log(__('Download and install the certificate from %s','https://www.apple.com/certificateauthority/AppleWWDRCAG2.cer'.cyan)+'\n');
19041904
process.exit(1);
19051905
}
19061906

iphone/cli/lib/info.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ exports.detect = function (types, config, next) {
7979
+__('The maximum supported Xcode version by Titanium SDK %s is Xcode %s.',manifestJson.version,issue.maxSupportedVer);
8080
break;
8181
case'IOS_NO_WWDR_CERT_FOUND':
82-
issue.message+='\n'+__('Download and install the certificate from %s','__http://developer.apple.com/certificationauthority/AppleWWDRCA.cer__');
82+
issue.message+='\n'+__('Download and install the certificate from %s','__https://www.apple.com/certificateauthority/AppleWWDRCAG2.cer__');
8383
break;
8484
case'IOS_NO_KEYCHAINS_FOUND':
8585
issue.message+='\n'+__('Titanium will most likely not be able to detect any developer or App Store distribution certificates.');

0 commit comments

Comments
 (0)
close