summaryrefslogtreecommitdiff
path: root/indra/newview/viewer_manifest.py
diff options
context:
space:
mode:
authorAura Linden <aura@lindenlab.com>2012-08-08 11:36:10 -0700
committerAura Linden <aura@lindenlab.com>2012-08-08 11:36:10 -0700
commit6f1be0007b53522374dcce52d542709c3906b824 (patch)
treecd46d6940ef8c659399527eb47ba59686d8292c5 /indra/newview/viewer_manifest.py
parent3e9c9993e3547acd8a9840ecce547066df0ccc34 (diff)
parentb0843fc14a3edd8cab090457f60100b00165e06a (diff)
Pulled merge, changed . to , in viewer-manifest
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rw-r--r--indra/newview/viewer_manifest.py23
1 files changed, 18 insertions, 5 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 587d708e86..ce0e48e18f 100644
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -821,11 +821,24 @@ class DarwinManifest(ViewerManifest):
identity = self.args['signature']
if identity == '':
identity = 'Developer ID Application'
- self.run_command('codesign --force --sign %(identity)r %(bundle)r' % {
- 'identity': identity,
- 'bundle': self.get_dst_prefix()
- })
-
+
+ # Look for an environment variable set via build.sh when running in Team City.
+ try:
+ build_secrets_checkout = os.environ['build_secrets_checkout']
+ except KeyError:
+ pass
+ else:
+ # variable found so use it to unlock keyvchain followed by codesign
+ home_path = os.environ['HOME']
+ keychain_pwd_path = os.path.join(build_secrets_checkout,'code-signing-osx','password.txt')
+ keychain_pwd = open(keychain_pwd_path).read().rstrip()
+
+ self.run_command('security unlock-keychain -p "%s" "%s/Library/Keychains/developer.keychain"' % ( keychain_pwd, home_path ) )
+ self.run_command('codesign --force --sign --verboose %(identity)r %(bundle)r' % {
+ 'identity': identity,
+ 'bundle': self.get_dst_prefix()
+ })
+
channel_standin = 'Second Life Viewer' # hah, our default channel is not usable on its own
if not self.default_channel():
channel_standin = self.channel()