소스 검색

Merge 8793d86d39 into 366b7ce576

pull/41/merge
kadeem 6 년 전
committed by GitHub
부모
커밋
1667d6553d
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
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):
paths = [os.path.join(path, item) for item in os.listdir(path)]
_dispatch_multi(path, paths, callback, *args)
else:
print(ERROR, BOLD + path, "isn't a repository!")
continue
valid.append(path)



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