mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-03 02:24:18 -05:00
* test that installers find plotters * maybe correct launching from installers * handle noisy output * list dmg contents * list exe installed contents * adjust chia path on darwin * linux as well * fix * more prints and some timeouts * resolve * undo * empty * more output * install numa * no madmax working from rpm * reword * Update build-linux-installer-rpm.yml
17 lines
332 B
Python
17 lines
332 B
Python
from __future__ import annotations
|
|
|
|
import click
|
|
|
|
from chia.cmds.installers import installers_group
|
|
from chia.cmds.sim import sim_cmd
|
|
|
|
|
|
@click.group("dev", help="Developer commands and tools")
|
|
@click.pass_context
|
|
def dev_cmd(ctx: click.Context) -> None:
|
|
pass
|
|
|
|
|
|
dev_cmd.add_command(sim_cmd)
|
|
dev_cmd.add_command(installers_group)
|