reloc: increment relocatable package version

This is needed for moving unified package contents to sub-directory.
This package itself has no change.
This commit is contained in:
Takuya ASADA 2021-06-16 19:36:22 +09:00
parent fbfbdaa298
commit d93d628762
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()