Explorar el Código

process directories recursively

pull/41/head
dingweifeng hace 6 años
padre
commit
8793d86d39
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      gitup/update.py

+ 5
- 0
gitup/update.py Ver fichero

@@ -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)



Cargando…
Cancelar
Guardar