From 3637a569d858855b43e7b563f258f5f06a27b71b Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Fri, 25 Sep 2015 10:20:58 -0700 Subject: [PATCH] Prefer a specific provisioning profile when none is explicitly provided --- build/config/ios/find_signing_identity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ""