mypy
Some checks failed
/ arch (push) Failing after 1m34s
/ alpine (push) Failing after 41s
/ fedora (push) Failing after 8m39s
/ debian (push) Failing after 7m48s
/ opensuse (push) Failing after 2m46s
/ alma (push) Has been cancelled
/ ubuntu (push) Has been cancelled
/ rocky (push) Has been cancelled

This commit is contained in:
Marc Beninca 2024-09-14 02:44:50 +02:00
parent 96d08df70d
commit 3e85c6e421
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 3 additions and 5 deletions

View file

@ -39,7 +39,7 @@ def clone_project_branch() -> None:
project.branch,
"--",
project.url,
project.root,
str(project.root),
)

View file

@ -18,12 +18,10 @@ def spcd_browse_workspace() -> None:
def spcd_build_project() -> None:
"""Perform the actual building process."""
for extension in ["py", "sh"]:
path = Path(project.root) / f"build.{extension}"
path = project.root / f"build.{extension}"
if path.exists():
ps.run(path)
ps.run(str(path))
break
else:
pass
def spcd_check_project() -> None: