diff --git a/kiauh/utils/git_utils.py b/kiauh/utils/git_utils.py index ac2ae39..880f9e5 100644 --- a/kiauh/utils/git_utils.py +++ b/kiauh/utils/git_utils.py @@ -263,6 +263,7 @@ def git_cmd_clone(repo: str, target_dir: Path, depth: int = 1) -> None: target_dir.as_posix() ] run(command, check=True) + Logger.print_ok("Clone successful!") except CalledProcessError as e: error = e.stderr.decode() if e.stderr else "Unknown error"