diff options
-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 fced30370c..06ac62d353 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -208,7 +208,7 @@ class ViewerManifest(LLManifest): "Platform":summary_json_platform} #MAINT-7294: Windows exe names depend on channel name, so write that in also if summary_json_platform.startswith('win'): - summary_dict.update({'Executable':self.channel_with_pkg_suffix().replace(' ', '')+'.exe'}) + summary_dict.update({'Executable':self.final_exe()}) with open(os.path.join(os.pardir,'summary.json'), 'w') as summary_handle: json.dump(summary_dict,summary_handle) |