From f48ab2d621e58c0ab3adbaa878f4317bdc5646c7 Mon Sep 17 00:00:00 2001 From: konsti Date: Thu, 13 Jul 2023 15:25:22 +0200 Subject: [PATCH] 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 --- scripts/ecosystem_all_check.py | 2 +- scripts/ecosystem_all_check.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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 # ```