Skip to content

Commit

Permalink
Update create_venv.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
mkolomeychenko authored Aug 4, 2022
1 parent 7be20b1 commit 2a4e97d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions create_venv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Official python docs: https://docs.python.org/3/library/venv.html
# Superviely developer portal: https://developer.supervise.ly/getting-started/installation#venv

if [ -d "venv" ]; then
if [ -d ".venv" ]; then
echo "VENV already exists, will be removed"
rm -rf .venv
fi
Expand All @@ -16,4 +16,4 @@ source .venv/bin/activate && \
echo "Install requirements..." && \
pip3 install -r requirements.txt && \
echo "Requirements have been successfully installed" && \
deactivate
deactivate

0 comments on commit 2a4e97d

Please sign in to comment.