diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2019-02-02 16:32:22 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2019-02-02 16:32:22 -0500 |
commit | 899cdb8a1b32d7d39b3a4b78ba41a0f4d87cb52f (patch) | |
tree | e0cc84701c5edf4ffbd6dea149da2586948e717e /indra/newview/viewer_manifest.py | |
parent | cfbe33d7c72c7677836d362fa4026f88df4c9f76 (diff) |
SL-9980: Update to viewer-manager 524014 to drop Admin for viewer.
But since that viewer-manager build depends on being able to read the
application name from build_data.json (to locate the shortcut), add an AppName
key to build_data.json.
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 32773b2c36..c0f642c852 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -431,7 +431,8 @@ class WindowsManifest(ViewerManifest): def finish_build_data_dict(self, build_data_dict): #MAINT-7294: Windows exe names depend on channel name, so write that in also - build_data_dict.update({'Executable':self.final_exe()}) + build_data_dict['Executable'] = self.final_exe() + build_data_dict['AppName'] = self.app_name() return build_data_dict def test_msvcrt_and_copy_action(self, src, dst): |