Files
python-appimage/python_appimage/commands/cache/get.py
2025-05-22 09:32:51 +02:00

19 lines
319 B
Python

from ...manylinux import ensure_image
__all__ = ['execute']
def _unpack_args(args):
'''Unpack command line arguments
'''
return (args.tags, args.extract)
def execute(images, extract):
'''Download image(s) to the cache
'''
for image in images:
ensure_image(image, extract=extract)