diff --git a/scripts/ecosystem_all_check.py b/scripts/ecosystem_all_check.py index 96107c7365..8111821d9a 100644 --- a/scripts/ecosystem_all_check.py +++ b/scripts/ecosystem_all_check.py @@ -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 diff --git a/scripts/ecosystem_all_check.sh b/scripts/ecosystem_all_check.sh index 315c52dc30..7eb593c469 100755 --- a/scripts/ecosystem_all_check.sh +++ b/scripts/ecosystem_all_check.sh @@ -7,6 +7,7 @@ # # Usage: # ``` +# cargo build --release --target x86_64-unknown-linux-musl --bin ruff # scripts/ecosystem_all_check.sh check --select RUF200 # ```