1

recursive

This commit is contained in:
Evan Pratten 2023-10-19 14:42:06 -04:00
parent d71f354f07
commit 3cff803272

View File

@ -21,7 +21,8 @@ def main() -> int:
# Find every subdirectory that is a git repo
git_dirs = []
for path in args.start.iterdir():
all_dirs_recursive = list(args.start.glob("**/*"))
for path in all_dirs_recursive:
if path.is_dir() and (path / ".git").is_dir():
git_dirs.append(path)
if args.log_repos: