This commit is contained in:
Marc Beninca 2024-09-29 20:13:55 +02:00
parent f6128a4632
commit e71613dfc7
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -38,8 +38,7 @@ root="$(dirname "${file}")"
root="${root}/root/py/pypi" root="${root}/root/py/pypi"
tmp="${root}/tmp" tmp="${root}/tmp"
rm --force --recursive \ rm --force --recursive "${root}"
~/.cache/pip "${root}"
for version in "os" "3.12" "3.11" "3.10"; do for version in "os" "3.12" "3.11" "3.10"; do
export VIRTUAL_ENV="/prj/venv/${version}" export VIRTUAL_ENV="/prj/venv/${version}"
@ -56,6 +55,7 @@ for version in "os" "3.12" "3.11" "3.10"; do
prefix="Name: " prefix="Name: "
for wheel in "${sub}/"*; do for wheel in "${sub}/"*; do
rm --force --recursive "${tmp}" rm --force --recursive "${tmp}"
mkdir --parents "${tmp}"
echo echo
echo "${wheel}" echo "${wheel}"
file="$(basename "${wheel}")" file="$(basename "${wheel}")"