diff options
author | Callum Prentice <callum@lindenlab.com> | 2008-03-01 01:56:15 +0000 |
---|---|---|
committer | Callum Prentice <callum@lindenlab.com> | 2008-03-01 01:56:15 +0000 |
commit | 1b9fb0031f4c909aa82d48151b99b6162a7ab801 (patch) | |
tree | 3f9b5cb9812d3d7b742c2017658b1ea9b800c56a /indra/newview/viewer_manifest.py | |
parent | ef34f73248465315afc17bea6a40288cf1c9b4e2 (diff) |
Stopped viewer_manifest.py deleting the temporary NSI file so we can debug why it's breaking under parabuild - related to dev-11821
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-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 94688dd8bc..40acde28a1 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -337,7 +337,7 @@ class WindowsManifest(ViewerManifest): NSIS_path = 'C:\\Program Files\\NSIS\\makensis.exe' self.run_command('"' + proper_windows_path(NSIS_path) + '" ' + self.dst_path_of(tempfile)) - self.remove(self.dst_path_of(tempfile)) + # self.remove(self.dst_path_of(tempfile)) self.created_path(installer_file) |