diff options
author | Brad Linden <46733234+brad-linden@users.noreply.github.com> | 2024-11-22 16:19:26 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-22 16:19:26 -0800 |
commit | b7924f77c6bb7388ba9d1611c2332da9c101dde0 (patch) | |
tree | e7a841f4beda34c5e8ca57d77c10294c49b91b29 /indra/lib/python | |
parent | 3d3332692a08b5faaa0a4123d700ba7338b2090a (diff) | |
parent | 9a29f07bb2720e0d4774497390ef40bd8b04f5ea (diff) |
Merge pull request #3141 from secondlife/brad/2744-cleanups
secondlife/viewer#2744 intel fallback cleanups
Diffstat (limited to 'indra/lib/python')
-rwxr-xr-x | indra/lib/python/indra/util/llmanifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/lib/python/indra/util/llmanifest.py b/indra/lib/python/indra/util/llmanifest.py index 38de9c7cf1..1bd65eb57d 100755 --- a/indra/lib/python/indra/util/llmanifest.py +++ b/indra/lib/python/indra/util/llmanifest.py @@ -637,7 +637,7 @@ class LLManifest(object, metaclass=LLManifestRegistry): 'vers':'_'.join(self.args['version'])} print("Creating unpacked file:", unpacked_file_name) # could add a gz here but that doubles the time it takes to do this step - tf = tarfile.open(self.src_path_of(unpacked_file_name), 'w:') + tf = tarfile.open(self.build_path_of(unpacked_file_name), 'w:') # add the entire installation package, at the very top level tf.add(self.get_dst_prefix(), "") tf.close() |