Lines Matching +full:path +full:- +full:key
5 # Use of this source code is governed by a BSD-style license that can be
10 import os.path
18 # pkg path to application directory, e.g. out/Debug/dm.app
21 # profile path or name of provisioning profile
26 for line in subprocess.check_output(['security', 'find-identity']).split('\n'):
32 print("Please verify by running 'security find-identity' or checking your keychain.")
37 if os.path.isfile(profile):
40 for p in glob.glob(os.path.join(os.environ['HOME'], 'Library', 'MobileDevice',
43 if re.search(r'''<key>Name</key>
48 …s installed in '${HOME}/Library/MobileDevice/Provisioning Profiles' or specify the path directly.")
53 os.path.join(pkg, 'embedded.mobileprovision'))
56 m = re.search(r'''<key>ApplicationIdentifierPrefix</key>
61 app, _ = os.path.splitext(os.path.basename(pkg))
68 <key>application-identifier</key> <string>{prefix}.com.google.{app}</string>
69 <key>get-task-allow</key> <true/>
76 '--force',
77 '--sign', identity,
78 '--entitlements', f.name,
79 '--timestamp=none',