mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-22 13:15:44 -05:00
cache: move cache.py to new module cache/cli.py for uniformity
This commit is contained in:
parent
50bcd0de63
commit
5d0d76fff2
3 changed files with 3 additions and 2 deletions
0
cache/__init__.py
vendored
Normal file
0
cache/__init__.py
vendored
Normal file
2
cache.py → cache/cli.py
vendored
2
cache.py → cache/cli.py
vendored
|
@ -13,7 +13,7 @@ PATHS = list(CHROOT_PATHS.keys())
|
|||
|
||||
@click.group(name='cache')
|
||||
def cmd_cache():
|
||||
"""Clean various working directories"""
|
||||
"""Clean various cache directories"""
|
||||
|
||||
|
||||
@cmd_cache.command(name='clean')
|
3
main.py
3
main.py
|
@ -8,13 +8,14 @@ from typing import Optional
|
|||
|
||||
from logger import logging, setup_logging, verbose_option
|
||||
from wrapper import nowrapper_option, enforce_wrap
|
||||
|
||||
from config.cli import config, config_option, cmd_config
|
||||
from packages.cli import cmd_packages
|
||||
from flavours.cli import cmd_flavours
|
||||
from devices.cli import cmd_devices
|
||||
from net.cli import cmd_net
|
||||
from chroot.cli import cmd_chroot
|
||||
from cache import cmd_cache
|
||||
from cache.cli import cmd_cache
|
||||
from image.cli import cmd_image
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue