From 4ba599b2fe69d24d9581e761fdc211ab8fc23d60 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 8 Jun 2025 01:41:31 +0200 Subject: [PATCH] render --- spcd/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spcd/commands.py b/spcd/commands.py index ad09f8f..cc1a944 100644 --- a/spcd/commands.py +++ b/spcd/commands.py @@ -20,7 +20,7 @@ def spcd_browse_workspace() -> None: def spcd_build_project() -> None: """Perform the actual building process.""" for extension in ("py", "sh"): - path = project.root / f"build.{extension}" + path = project.root / f"render.{extension}" if path.exists(): ps.run(str(path)) break