diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2018-10-26 14:55:13 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2018-10-26 14:55:13 -0400 |
commit | 9b5b44314acdef260ab515855a72c707e8f3f5fc (patch) | |
tree | 0dd00467b2827ef7ef106b517ac398b41022a860 /indra/newview | |
parent | 32e30386d8cef58533610d31eaba3d3ac976ab76 (diff) |
DRTVWR-447: For some reason the Windows viewer exe wasn't signed.
viewer_manifest.py was signing updater.exe within the package, and then
signing the installer executable itself, but not the actual viewer executable.
Add that.
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 508c5cb043..f2b0fe6a32 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -827,6 +827,7 @@ class WindowsManifest(ViewerManifest): # note that the enclosing setup exe is signed later, after the makensis makes it. # Unlike the viewer binary, the VMP filenames are invariant with respect to version, os, etc. for exe in ( + self.final_exe(), "updater.exe", ): self.sign(exe) |