summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-09-11 13:33:30 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-09-11 13:33:30 -0400
commit0d0dafc1be14d0c4b8cf7b02ac949182d1eb093c (patch)
tree1b849d2cf803c1a24af413da1b29df688c807bdf /indra
parent0107f030c85c1ea122309a21a4d6790fc22e6d10 (diff)
SL-19242: Fix minor error in viewer_manifest.set_github_output().
Diffstat (limited to 'indra')
-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 33d5720320..a5415bb4bc 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -417,7 +417,7 @@ class ViewerManifest(LLManifest):
if GITHUB_OUTPUT and values:
with open(GITHUB_OUTPUT, 'a') as outf:
if len(values) == 1:
- print('='.join((variable, value)), file=outf)
+ print('='.join((variable, values[0])), file=outf)
else:
delim = secrets.token_hex(8)
print('<<'.join((variable, delim)), file=outf)