summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-07-29 21:30:03 +0300
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-07-29 23:23:30 +0300
commitf93c8694e39c0ec12d43b74c1c37c0a14da19d67 (patch)
treeb666f1431c26f700a4a3a94acddb6e6c390d9f91
parent92154ed36ffddac349ac2336a3cc5a1eb6eebb72 (diff)
#6061 Fix wrapper exe having spaces
-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 8e59c26316..27f898d5af 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -764,7 +764,7 @@ class Windows_x86_64_Manifest(ViewerManifest):
pack_version = '.'.join(self.args['version'][:3])
if len(self.args['version']) > 3 and self.args['version'][3]:
pack_version += '-' + self.args['version'][3]
- pack_title = self.app_name() # Display name with spaces
+ pack_title = pack_id #Wrapper exe, don't use spaces
pack_dir = self.get_dst_prefix()
main_exe = self.final_exe()
installer_base = self.installer_base_name()