From 9cb23cfff14524cdf7d20daf5742108560971611 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Mon, 14 Oct 2024 22:55:39 +0200 Subject: [PATCH] source,target --- spcd/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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: