diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2017-10-05 22:54:33 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2017-10-05 22:54:33 -0400 |
commit | de59932c29bfaf40c371cadb304f6a71f1609c79 (patch) | |
tree | 8f04ff91d1fa27e76ba3465703e1bab6754f2f8f /indra | |
parent | a5f7f4fb1d09716fd9d7c54c336da6a3f5db8250 (diff) |
MAINT-7684: Don't try to package or sign deleted Windows VMP .exes.
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 900e9f7b1b..c8b51fcd86 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -368,10 +368,8 @@ class WindowsManifest(ViewerManifest): self.path(src='%s/secondlife-bin.exe' % self.args['configuration'], dst=self.final_exe()) # include the compiled launcher scripts so that it gets included in the file_list - self.path(src='%s/apply_update.exe' % vmpdir, dst="apply_update.exe") self.path(src='%s/download_update.exe' % vmpdir, dst="download_update.exe") self.path(src='%s/SL_Launcher.exe' % vmpdir, dst="SL_Launcher.exe") - self.path(src='%s/update_manager.exe' % vmpdir, dst="update_manager.exe") #IUM is not normally executed directly, just imported. No exe needed. self.path2basename(vmpdir,"InstallerUserMessage.py") @@ -709,10 +707,8 @@ 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 ( - "apply_update.exe", "download_update.exe", "SL_Launcher.exe", - "update_manager.exe", ): self.sign(exe) |