Compare commits

..

No commits in common. "3439434c08538b0266c3bd88b778690571643a90" and "86dfef68c129881eefb7ad61072ad2ec7acbf630" have entirely different histories.

2 changed files with 0 additions and 10 deletions

View file

@ -80,9 +80,7 @@ from various contexts of CA, CI and OCI / OS.
* implement project repository cloning * implement project repository cloning
* install * install
* epel * epel
* plantuml
* shellcheck * shellcheck
* graphviz
* openssh * openssh
* pip * pip
* ruff * ruff

View file

@ -7,7 +7,6 @@ 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
@ -36,13 +35,6 @@ 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)