From a3bf6d9cb7c7da0c485886e2e5d5526d77ff2955 Mon Sep 17 00:00:00 2001 From: konsti Date: Mon, 14 Aug 2023 22:40:56 +0200 Subject: [PATCH] Formatter ecosystem checks: Use twine instead of build (#6559) --- scripts/formatter_ecosystem_checks.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/formatter_ecosystem_checks.sh b/scripts/formatter_ecosystem_checks.sh index f26405212e..4acbce21a6 100755 --- a/scripts/formatter_ecosystem_checks.sh +++ b/scripts/formatter_ecosystem_checks.sh @@ -17,10 +17,10 @@ dir="$target/progress_projects" mkdir -p "$dir" # small util library -if [ ! -d "$dir/build/.git" ]; then - git clone --filter=tree:0 https://github.com/pypa/build "$dir/build" +if [ ! -d "$dir/twine/.git" ]; then + git clone --filter=tree:0 https://github.com/pypa/twine "$dir/twine" fi -git -C "$dir/build" checkout d90f9ac6503a40ddbfaef94b7a7040f87178a4b3 +git -C "$dir/twine" checkout 0bb428c410b8df64c04dc881ac1db37d932f3066 # web framework that implements a lot of magic if [ ! -d "$dir/django/.git" ]; then git clone --filter=tree:0 https://github.com/django/django "$dir/django"