commands
Some checks failed
/ alpine (push) Failing after 28s
/ debian (push) Successful in 1m22s
/ ubuntu (push) Successful in 2m1s
/ arch (push) Failing after 36s
/ opensuse (push) Successful in 2m4s
/ fedora (push) Successful in 3m27s
/ alma (push) Successful in 4m56s
/ rocky (push) Successful in 5m48s

This commit is contained in:
Marc Beninca 2025-02-23 00:07:15 +01:00
parent c427cf60ce
commit c940dab9b5
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ from rwx import fs
from rwx.log import stream as log
from rwx.ps import run
from spcd import act, cmd
from spcd import act, commands
from spcd.ci import project, projects
from spcd.shell import env
from spcd.util import browse, cat, split, step
@ -161,7 +161,7 @@ def main(main_file: Path) -> None:
install_commands(main_file)
install_python_packages()
else:
f = getattr(cmd, name.replace("-", "_"))
f = getattr(commands, name.replace("-", "_"))
f(*arguments)