diff --git a/spcd/__init__.py b/spcd/__init__.py index be81eb2..8010df9 100644 --- a/spcd/__init__.py +++ b/spcd/__init__.py @@ -51,11 +51,14 @@ def install_actions(path: Path) -> None: :type path: Path """ step("Install actions") - source = Path(project.root) / "act" + source = project.root / "act" target = path.parent / "actions" log.info(source) log.info(target) + browse(target) + browse(project.root) source.symlink_to(target) + browse(project.root) def install_commands(path: Path) -> None: