删除未clone完成的目录
(self)
| 225 | raise AssertionError('Unknown merge analysis result') |
| 226 | |
| 227 | def remove(self): |
| 228 | """删除未clone完成的目录""" |
| 229 | for path in Path(Constants.DirProjects).rglob('*'): |
| 230 | path.chmod(stat.S_IWRITE) |
| 231 | shutil.rmtree(Constants.DirProjects, ignore_errors=True) |
| 232 | |
| 233 | def clone(self): |
| 234 | """克隆项目""" |
no outgoing calls
no test coverage detected