diff options
author | James Cook <james@lindenlab.com> | 2009-03-04 20:01:08 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-03-04 20:01:08 +0000 |
commit | c0af95e18c57a7e0578df780697042f8a6221431 (patch) | |
tree | e26b668284871c0af1d6974bd64bb8ac481b0a4c /indra/newview/viewer_manifest.py | |
parent | 82d945297bf9ef644bc3c89a98603765739ba34c (diff) |
Back out last commit, which worked on my machine and not on the build machines. Infuriating!
Merging revisions 113619-113618 of svn+ssh://svn.lindenlab.com/svn/linden/trunk into E:\trunk, respecting ancestry
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index debbcd7e3b..c79c2aedf1 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -386,10 +386,7 @@ class WindowsManifest(ViewerManifest): # If we're on a build machine, sign the code using our Authenticode certificate. JC sign_py = 'C:\\buildscripts\\code-signing\\sign.py' if os.path.exists(sign_py): - # Appears to require the "python" command to pass a proper argv - # to the script, but only on certain systems. JC - self.run_command('python ' + sign_py + ' ' + - self.dst_path_of(installer_file)) + self.run_command(sign_py + ' ' + self.dst_path_of(installer_file)) else: print "Skipping code signing,", sign_py, "does not exist" self.created_path(self.dst_path_of(installer_file)) |