(*args, **kwargs)
| 376 | path = pathlib.Path(clone_path) |
| 377 | |
| 378 | def grun(*args, **kwargs): |
| 379 | run('git', '-C', str(path), *args, cstdout=True, cstderr=True) |
| 380 | |
| 381 | git_dir = path.joinpath('.git') |
| 382 | # handle existing config directory |
no test coverage detected