This commit is contained in:
Marc Beninca 2024-09-28 23:52:50 +02:00
parent 4b09ebadc2
commit d4b83a1bfa
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

18
re.sh
View file

@ -52,9 +52,9 @@ uv_venv() {
remove ~/.cache/pip ~/.local/share/uv
os="${root}/venv.os"
uv="${root}/venv"
py="${root}/venv"
remove "${os}" "${uv}"
remove "${os}" "${py}"
python3 -m "venv" "${os}"
activate "${os}"
@ -63,18 +63,18 @@ pip_install --upgrade "pip"
pip_install "uv"
list "${os}"
uv_python "${uv}"
uv_venv "${uv}"
uv_python "${py}"
uv_venv "${py}"
deactivate
# remove "${os}"
activate "${uv}"
activate "${py}"
list "${uv}"
list "${py}"
pip_install "uv"
list "${uv}"
list "${py}"
set \
\
@ -106,6 +106,6 @@ set \
uv_install "${@}"
ln --symbolic "/rwx/rwx/rwx" "${uv}/lib/python"*"/site-packages/rwx"
ln --symbolic "/rwx/rwx/rwx" "${py}/lib/python"*"/site-packages/rwx"
list "${uv}"
list "${py}"