parent
4a9640475e
commit
3439434c08
1 changed files with 8 additions and 0 deletions
|
@ -7,6 +7,7 @@ from pathlib import Path
|
||||||
|
|
||||||
from rwx import fs
|
from rwx import fs
|
||||||
from rwx.log import stream as log
|
from rwx.log import stream as log
|
||||||
|
from rwx.ps import run
|
||||||
|
|
||||||
import spcd
|
import spcd
|
||||||
from spcd import cmd
|
from spcd import cmd
|
||||||
|
@ -35,6 +36,13 @@ def main(main: str) -> None:
|
||||||
if name == "__main__.py":
|
if name == "__main__.py":
|
||||||
spcd.set_ssh(*arguments)
|
spcd.set_ssh(*arguments)
|
||||||
spcd.install_commands(main)
|
spcd.install_commands(main)
|
||||||
|
# FIXME abstract command
|
||||||
|
run(
|
||||||
|
"apt-get",
|
||||||
|
"install",
|
||||||
|
"--assume-yes",
|
||||||
|
"graphviz",
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
function = getattr(cmd, name.replace("-", "_"))
|
function = getattr(cmd, name.replace("-", "_"))
|
||||||
function(*arguments)
|
function(*arguments)
|
||||||
|
|
Loading…
Reference in a new issue