diff --git a/spcd/__init__.py b/spcd/__init__.py index 41b6927..da7f3c8 100644 --- a/spcd/__init__.py +++ b/spcd/__init__.py @@ -51,7 +51,11 @@ def install_actions(path: Path) -> None: :type path: Path """ step("Install actions") - Path("act").symlink_to(path.parent / "actions") + source = Path("act") + target = path.parent / "actions" + log.info(source) + log.info(actions) + source.symlink_to(target) def install_commands(path: Path) -> None: