Update scripts/ecosystem_all_check.sh (#5737)

## Summary

These changes make `scripts/ecosystem_all_check.sh --select ALL` work
again, i forgot to update this script to the new directory structure
from #5299 because it's only run manually


## Test Plan

n/a
This commit is contained in:
konsti 2023-07-13 15:25:22 +02:00 committed by GitHub
parent cf48ad7b21
commit f48ab2d621
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -50,7 +50,7 @@ def main() -> None:
successes = 0
errors = 0
for repository in tqdm(repositories):
project_dir = checkouts.joinpath(repository.org).joinpath(repository.repo)
project_dir = checkouts.joinpath(f"{repository.org}:{repository.repo}")
if not project_dir.is_dir():
tqdm.write(f"Missing {project_dir}")
errors += 1