meta: Make Makefile platform-agnostic

not everything exposes a `virtualenv` command, this calls the module
directly
This commit is contained in:
Cara Salter 2022-12-09 15:48:35 -05:00
parent 9d9ec58a7c
commit a490134c6f
No known key found for this signature in database
GPG key ID: 90C66610C82B29CA

View file

@ -15,7 +15,7 @@ clean:
@find . -name flask_session -type d -not -path "./.venv/*" -ls -exec rm -r {} +
init_env:
virtualenv .venv
python3 -m venv .venv
source .venv/bin/activate && pip3 install --upgrade pip
source .venv/bin/activate && pip3 install -r requirements.txt txt