Files
chia-blockchain/chia/cmds/dev.py
T
Kyle AltendorfandGitHub 18bcc3e561 test installers find plotters main (#17646)
* 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
2024-03-20 09:11:11 -07:00

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)