packages: add cmd_devices_list()
This commit is contained in:
parent
75c832cbfb
commit
6f9a013c2e
2 changed files with 18 additions and 2 deletions
|
@ -16,7 +16,7 @@ from wrapper import check_programs_wrap, enforce_wrap
|
|||
|
||||
from .build import build_packages_by_paths
|
||||
from .pkgbuild import discover_pkgbuilds, filter_pkgbuilds, init_pkgbuilds
|
||||
from .device import get_profile_device
|
||||
from .device import cmd_devices_list, get_profile_device
|
||||
|
||||
|
||||
def build(
|
||||
|
@ -50,6 +50,9 @@ def cmd_packages():
|
|||
"""Build and manage packages and PKGBUILDs"""
|
||||
|
||||
|
||||
cmd_packages.add_command(cmd_devices_list, 'devices')
|
||||
|
||||
|
||||
@cmd_packages.command(name='update')
|
||||
@click.option('--non-interactive', is_flag=True)
|
||||
def cmd_update(non_interactive: bool = False):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue