From 46d7b287a6d27a2ca0d981d9c5afa79d581bf98d Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Mon, 30 Sep 2024 10:13:07 +0200 Subject: [PATCH] versions --- re.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/re.sh b/re.sh index f9c322f..a706ab9 100755 --- a/re.sh +++ b/re.sh @@ -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 ;;