소스 검색

update repositories recursively int sub directories.

pull/42/head
weifengding 6 년 전
부모
커밋
b76f26de24
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      gitup/update.py

+ 5
- 0
gitup/update.py 파일 보기

@@ -200,6 +200,11 @@ def _dispatch_multi(base, paths, callback, *args):
try:
Repo(path)
except (exc.InvalidGitRepositoryError, exc.NoSuchPathError):
if os.path.isdir(path):
sub_paths = [os.path.join(path, item) for item in os.listdir(path)]
_dispatch_multi(path, sub_paths, callback, *args)
else:
print(ERROR, BOLD + path, "isn't a repository!")
continue
valid.append(path)



불러오는 중...
취소
저장