ソースを参照

process directories recursively

pull/41/head
dingweifeng 6年前
コミット
8793d86d39
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)



読み込み中…
キャンセル
保存