1
Fork 0
mirror of https://github.com/Steffo99/config-fish.git synced 2024-10-16 06:17:34 +00:00

Remove unused revenv

This commit is contained in:
Steffo 2024-05-20 02:03:08 +02:00
parent 150511e1ea
commit 18d50491e6
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -1,17 +0,0 @@
function revenv
echo_progress "Removing previous venv..."
rm -rfi venv
echo
echo_progress "Creating a new venv..."
python -m venv venv
echo
echo_progress "Accessing the new venv..."
source venv/bin/activate.fish
echo
echo_progress "Installing "
echo_highlight "$argv"
pip install $argv
echo
echo_progress "Done!"
echo
end