summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoyot@coyot-sager-PC.hsd1.ca.comcast.net <coyot@coyot-sager-PC.hsd1.ca.comcast.net>2017-05-04 18:59:01 +0100
committercoyot@coyot-sager-PC.hsd1.ca.comcast.net <coyot@coyot-sager-PC.hsd1.ca.comcast.net>2017-05-04 18:59:01 +0100
commit6d425401c11264e4dd77d0f60d8fd452fbce0020 (patch)
tree60c117fc9dbe8633fbef2c1f9e3fc00786a4803d
parent54d5658186b0ac21488f656a87bd4b374a7b27ed (diff)
SL-617: use final_exe to create exe name in summary.json
-rwxr-xr-xindra/newview/viewer_manifest.py2
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)