diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-09-02 09:44:24 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-09-02 09:44:24 -0400 |
commit | b13c1f77c7004ab991eb38637ccde01bc4f13b6f (patch) | |
tree | 22c3150ac8d58fda9314749fc8050240df1153ae /indra | |
parent | bfb059d4ff63ef45f1703013561731953057b605 (diff) |
SL-19242: Emphasize to upload-artifact that our .app is a directory
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index d07ec22496..1f67324aaa 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -853,7 +853,7 @@ class DarwinManifest(ViewerManifest): def construct(self): # copy over the build result (this is a no-op if run within the xcode script) self.path(os.path.join(self.args['configuration'], self.channel()+".app"), dst="") - self.set_github_output_path('viewer_exe', self.channel() + ".app") + self.set_github_output_path('viewer_exe', self.channel() + ".app/") pkgdir = os.path.join(self.args['build'], os.pardir, 'packages') relpkgdir = os.path.join(pkgdir, "lib", "release") |