Skip to content
Snippets Groups Projects
Commit de59932c authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

MAINT-7684: Don't try to package or sign deleted Windows VMP .exes.

parent a5f7f4fb
No related branches found
No related tags found
No related merge requests found
...@@ -368,10 +368,8 @@ def construct(self): ...@@ -368,10 +368,8 @@ def construct(self):
self.path(src='%s/secondlife-bin.exe' % self.args['configuration'], dst=self.final_exe()) 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 # 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/download_update.exe' % vmpdir, dst="download_update.exe")
self.path(src='%s/SL_Launcher.exe' % vmpdir, dst="SL_Launcher.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. #IUM is not normally executed directly, just imported. No exe needed.
self.path2basename(vmpdir,"InstallerUserMessage.py") self.path2basename(vmpdir,"InstallerUserMessage.py")
...@@ -709,10 +707,8 @@ def package_finish(self): ...@@ -709,10 +707,8 @@ def package_finish(self):
# note that the enclosing setup exe is signed later, after the makensis makes it. # 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. # Unlike the viewer binary, the VMP filenames are invariant with respect to version, os, etc.
for exe in ( for exe in (
"apply_update.exe",
"download_update.exe", "download_update.exe",
"SL_Launcher.exe", "SL_Launcher.exe",
"update_manager.exe",
): ):
self.sign(exe) self.sign(exe)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment