diff --git a/build/config/ios/find_signing_identity.py b/build/config/ios/find_signing_identity.py index 39355c05479..2fe67f98e77 100644 --- a/build/config/ios/find_signing_identity.py +++ b/build/config/ios/find_signing_identity.py @@ -27,7 +27,7 @@ def FindValidIdentity(): res = exp.match(line) if res is None: continue - if "iPhone Developer" in res.group(2): + if "iPhone Developer: Google Development" in res.group(2): return res.group(1) return ""