From db2953e5de12eb5eea347f4069be9c0ab015dcdb Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Mon, 11 Sep 2023 15:29:32 -0400
Subject: [PATCH] SL-19242: Have to prefix upload-artifact exclude paths with
 pathname.

---
 indra/newview/viewer_manifest.py | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index a5415bb4bc9..1a8973ff842 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -500,12 +500,15 @@ def construct(self):
             # Find secondlife-bin.exe in the 'configuration' dir, then rename it to the result of final_exe.
             self.path(src='%s/secondlife-bin.exe' % self.args['configuration'], dst=self.final_exe())
             # Emit the whole app image as one of the GitHub step outputs.
-            self.set_github_output('viewer_app',
-                                   self.get_dst_prefix(), # whole app directory
-                                   '!secondlife-bin.*',   # except for this stuff
-                                   '!*.bat',
-                                   '!*.tar.bz2',
-                                   '!*.nsi')
+            appbase = self.relpath(self.get_dst_prefix(), base=os.getcwd())
+            self.set_github_output('viewer_app', appbase,
+                                   # except for this stuff
+                                   *(('!' + os.path.join(appbase, pattern))
+                                     for pattern in (
+                                             'secondlife-bin.*',
+                                             '*.bat',
+                                             '*.tar.bz2',
+                                             '*.nsi')))
 
             with self.prefix(src=os.path.join(pkgdir, "VMP")):
                 # include the compiled launcher scripts so that it gets included in the file_list
-- 
GitLab