Skip to content
Snippets Groups Projects
Commit 4236e11b authored by Simon McVittie's avatar Simon McVittie
Browse files

build-relocatable-install: Make --archive work as intended

parent e1b6c526
No related branches found
No related tags found
No related merge requests found
...@@ -521,8 +521,14 @@ def main(): ...@@ -521,8 +521,14 @@ def main():
) as writer: ) as writer:
writer.write('{}\n'.format(args.version)) writer.write('{}\n'.format(args.version))
bin_tar = 'pressure-vessel-{}-bin.tar.gz'.format(args.version) bin_tar = os.path.join(
src_tar = 'pressure-vessel-{}-bin+src.tar.gz'.format(args.version) args.archive,
'pressure-vessel-{}-bin.tar.gz'.format(args.version),
)
src_tar = os.path.join(
args.archive,
'pressure-vessel-{}-bin+src.tar.gz'.format(args.version),
)
subprocess.check_call([ subprocess.check_call([
'tar', 'tar',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment