Add aarch64 to the update

This commit is contained in:
Valentin Niess
2025-05-22 23:43:51 +02:00
parent d1eb24e0f4
commit f9b46b5e7f
7 changed files with 86 additions and 32 deletions

View File

@@ -18,7 +18,7 @@ def _unpack_args(args):
return args.tag, args.abi, args.bare, args.clean, args.no_packaging
def execute(tag, abi, bare, clean, no_packaging):
def execute(tag, abi, bare=False, clean=False, no_packaging=False):
'''Build a Python AppImage using a Manylinux image
'''
@@ -48,7 +48,7 @@ def execute(tag, abi, bare, clean, no_packaging):
)
elif bare:
log('COMPRESS', fullname)
destination = f'{fullname}.tgz'
destination = f'{fullname}.tar.gz'
tar_path = Path(tmpdir) / destination
with tarfile.open(tar_path, "w:gz") as tar:
tar.add(appdir, arcname=fullname)