This commit is contained in:
Marc Beninca 2024-09-30 10:13:07 +02:00
parent e71fc92be5
commit 46d7b287a6
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

8
re.sh
View file

@ -105,9 +105,9 @@ venvs() {
local action="${1}"
local venv version
set \
"3.12" \
"3.11" \
"3.10" \
"python3.12" \
"python3.11" \
"python3.10" \
"pypy3.10"
for version in "${@}"; do
venv="${root}/${version}"
@ -137,7 +137,7 @@ venvs() {
for module in "rwx"; do
ln --symbolic \
"/rwx/rwx/${module}" \
"${venv}/lib/python${version}/site-packages/${module}"
"${venv}/lib/${version}/site-packages/${module}"
done
deactivate
;;