From dbb27ac0ef855318c6a191cb6163b482140470d0 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Mon, 14 Oct 2024 23:27:57 +0200 Subject: [PATCH] browse/target,source --- spcd/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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: