diff --git a/e4s_cl/util.py b/e4s_cl/util.py index 76f1d57f..f0c7dd98 100644 --- a/e4s_cl/util.py +++ b/e4s_cl/util.py @@ -323,7 +323,8 @@ def empty_dir(path: Path): def create_symlink(path: Path, dest: Path): dest_full_path = dest / path.name - dest_full_path.symlink_to(path) + if not dest_full_path.exists(): + dest_full_path.symlink_to(path) def hline(title, *args, **kwargs): """Build a colorful horizontal rule for console output.