Skip to content

Commit

Permalink
Update scripts/ecosystem_all_check.sh (astral-sh#5737)
Browse files Browse the repository at this point in the history
## 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 astral-sh#5299 because it's only run manually


## Test Plan

n/a
  • Loading branch information
konstin authored and evanrittenhouse committed Jul 19, 2023
1 parent f180504 commit 31f975e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ecosystem_all_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions scripts/ecosystem_all_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#
# Usage:
# ```
# cargo build --release --target x86_64-unknown-linux-musl --bin ruff
# scripts/ecosystem_all_check.sh check --select RUF200
# ```

Expand Down

0 comments on commit 31f975e

Please sign in to comment.