diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-09-26 11:47:18 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-09-26 11:47:18 -0400 |
commit | 5f69db9d1907eac79ad7fa9e639733de42eec36f (patch) | |
tree | cee593bafe4123c5f7d5098916b05ea5ddf0590c | |
parent | e604dee693d711f2be364d12ec1f9f8e4f02da6c (diff) |
SL-19242: Allow overwriting the Mac viewer's app bundle tarball.
-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 b7dc705e95..899456dd09 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -932,7 +932,7 @@ class DarwinManifest(ViewerManifest): # must itself be a symlink to some specific Versions subdir. tarpath = os.path.join(RUNNER_TEMP, "viewer.tar.bz2") print(f'Creating {tarpath} from {self.get_dst_prefix()}') - with tarfile.open(tarpath, mode="x:bz2") as tarball: + with tarfile.open(tarpath, mode="w:bz2") as tarball: tarball.add(self.get_dst_prefix()) self.set_github_output_path('viewer_app', tarpath) |