This commit is contained in:
Takuya ASADA 2022-08-15 18:36:38 +09:00 committed by GitHub
commit 15e8050181
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -45,9 +45,9 @@ args = ap.parse_args()
output = args.dest
ar = tarfile.open(output, mode='w|gz')
# relocatable package format version = 2
# relocatable package format version = 3
with open('build/.relocatable_package_version', 'w') as f:
f.write('2\n')
f.write('3\n')
ar.add('build/.relocatable_package_version', arcname='.relocatable_package_version')
pathlib.Path('build/SCYLLA-RELOCATABLE-FILE').touch()