-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Making a subprocess call on every directory is not acceptable.
Lines 172 to 179 in bb2290d
| subprocess.check_output( | |
| ( | |
| f"find {d.relative_to(Path.cwd())} -maxdepth 1 -type d" | |
| f" | git check-ignore --stdin" | |
| ), | |
| shell=True, | |
| stderr=subprocess.STDOUT # Do not print errors in console | |
| ) |