This commit is contained in:
Marc Beninca 2024-09-29 18:08:39 +02:00
parent 37af0dbe2d
commit 719aa2f9fd
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -46,13 +46,13 @@ for version in "3.12" "3.11" "3.10"; do
export OLD_PATH="${PATH}"
export PATH="${VIRTUAL_ENV}/bin:${PATH}"
python -m pip \
python -m pip \
download \
--dest "${root}" \
"${@}"
prefix="Name: "
for wheel in "${root}/"*; do
prefix="Name: "
for wheel in "${root}/"*; do
rm --force --recursive "${tmp}"
echo
echo "${wheel}"
@ -88,7 +88,7 @@ for wheel in "${root}/"*; do
sub="${root}/simple/${name}"
mkdir --parents "${sub}"
mv -i "${root}/${file_name}-"* "${sub}/"
done
done
export PATH="${OLD_PATH}"
unset OLD_PATH VIRTUAL_ENV