From 6d425401c11264e4dd77d0f60d8fd452fbce0020 Mon Sep 17 00:00:00 2001 From: "coyot@coyot-sager-PC.hsd1.ca.comcast.net" Date: Thu, 4 May 2017 18:59:01 +0100 Subject: SL-617: use final_exe to create exe name in summary.json --- indra/newview/viewer_manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3