Get images to the cache

This commit is contained in:
Valentin Niess
2025-05-22 09:32:51 +02:00
parent a7c56e3c77
commit f746e5dae3
5 changed files with 54 additions and 20 deletions

View File

@@ -13,14 +13,14 @@ __all__ = ['execute']
def _unpack_args(args):
'''Unpack command line arguments
'''
return args.tag, args.abi
return args.tag, args.abi, args.clean
def execute(tag, abi):
def execute(tag, abi, clean):
'''Build a Python AppImage using a Manylinux image
'''
image = ensure_image(tag)
image = ensure_image(tag, clean=clean)
pwd = os.getcwd()
with TemporaryDirectory() as tmpdir: