diff options
author | Oz Linden <oz@lindenlab.com> | 2014-10-29 18:42:43 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-10-29 18:42:43 -0400 |
commit | 4a329b391992af09116dc04b54daced3c50d4cba (patch) | |
tree | 2b3fe3d5fc1af272e6c7831196b02d7563f78a84 /indra | |
parent | aa7c939a6bf95245d61d18e2dad76464b271e06f (diff) |
fix signature target path
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 402c30d9ab..4d500b7ab7 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -945,7 +945,7 @@ class Darwin_i386_Manifest(ViewerManifest): # the signature are preserved; moving the files using python will leave them behind # and invalidate the signatures. if 'signature' in self.args: - app_in_dmg=os.path.join(volpath,self.get_dst_prefix()) + app_in_dmg=os.path.join(volpath,self.app_name()+".app") print "Attempting to sign '%s'" % app_in_dmg identity = self.args['signature'] if identity == '': |