diff options
| author | Jonathan "Geenz" Goodman <geenz@lindenlab.com> | 2025-10-16 18:37:04 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-16 18:37:04 -0400 |
| commit | 01a799495b93cb9f7d5b9298bfb57afc99e47e1b (patch) | |
| tree | 5b2038d379a7c630dd3690e8746dd2af348fb927 /indra/newview/viewer_manifest.py | |
| parent | b011263b60d95048f89947717f6cb915f3628aae (diff) | |
| parent | ad374a0176737df94c3a004a1386684ff185ff26 (diff) | |
Merge pull request #4842 from secondlife/andreyk/viewer_4701
#4701 Fix incorrect architecture in package's name
Diffstat (limited to 'indra/newview/viewer_manifest.py')
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index e46073057e..0e2c9d177e 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -245,6 +245,16 @@ class ViewerManifest(LLManifest): } return "%(channel_vendor_base)s%(channel_variant_underscores)s_%(version_underscores)s_%(arch)s" % substitution_strings + def installer_base_name_mac(self): + global CHANNEL_VENDOR_BASE + # a standard map of strings for replacing in the templates + substitution_strings = { + 'channel_vendor_base' : '_'.join(CHANNEL_VENDOR_BASE.split()), + 'channel_variant_underscores':self.channel_variant_app_suffix(), + 'version_underscores' : '_'.join(self.args['version']) + } + return "%(channel_vendor_base)s%(channel_variant_underscores)s_%(version_underscores)s_universal" % substitution_strings + def app_name(self): global CHANNEL_VENDOR_BASE channel_type=self.channel_type() @@ -1068,7 +1078,7 @@ class Darwin_x86_64_Manifest(ViewerManifest): def package_finish(self): - imagename = self.installer_base_name() + imagename = self.installer_base_name_mac() self.set_github_output('imagename', imagename) finalname = imagename + ".dmg" self.package_file = finalname |
