Skip to content

Commit

Permalink
Merge pull request #171 from madsmtm/support-newer-openssl
Browse files Browse the repository at this point in the history
Support newer versions of the OpenSSL x509 text format
  • Loading branch information
fredszaq authored Aug 4, 2022
2 parents 578dd30 + 66f69b5 commit 9a9da75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dinghy-lib/src/ios/xcode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pub fn sign_app(bundle: &BuildBundle, settings: &SignatureSettings) -> Result<()

pub fn look_for_signature_settings(device_id: &str) -> Result<Vec<SignatureSettings>> {
let identity_regex = ::regex::Regex::new(r#"^ *[0-9]+\) ([A-Z0-9]{40}) "(.+)"$"#)?;
let subject_regex = ::regex::Regex::new(r#"OU=([^,]+)"#)?;
let subject_regex = ::regex::Regex::new(r#"OU *= *([^,]+)"#)?;
let mut identities: Vec<SigningIdentity> = vec![];
let find_identities = process::Command::new("security")
.args(&["find-identity", "-v", "-p", "codesigning"])
Expand Down

0 comments on commit 9a9da75

Please # to comment.