mirror of
https://github.com/dw-0/kiauh.git
synced 2025-12-26 17:23:35 +05:00
fix(git_utils): add a newline for better readability in git_cmd_clone
Signed-off-by: Aleksei Sviridkin <f@lex.la>
This commit is contained in:
@@ -263,6 +263,7 @@ def git_cmd_clone(repo: str, target_dir: Path, depth: int = 1) -> None:
|
|||||||
target_dir.as_posix()
|
target_dir.as_posix()
|
||||||
]
|
]
|
||||||
run(command, check=True)
|
run(command, check=True)
|
||||||
|
|
||||||
Logger.print_ok("Clone successful!")
|
Logger.print_ok("Clone successful!")
|
||||||
except CalledProcessError as e:
|
except CalledProcessError as e:
|
||||||
error = e.stderr.decode() if e.stderr else "Unknown error"
|
error = e.stderr.decode() if e.stderr else "Unknown error"
|
||||||
|
|||||||
Reference in New Issue
Block a user