diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-09-11 13:33:30 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-09-11 13:33:30 -0400 |
commit | 0d0dafc1be14d0c4b8cf7b02ac949182d1eb093c (patch) | |
tree | 1b849d2cf803c1a24af413da1b29df688c807bdf | |
parent | 0107f030c85c1ea122309a21a4d6790fc22e6d10 (diff) |
SL-19242: Fix minor error in viewer_manifest.set_github_output().
-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 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) |