mirror of
https://github.com/niess/python-appimage.git
synced 2026-03-13 20:00:19 +01:00
Get images to the cache
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user