Use Python 3 commands in build script

This commit is contained in:
Christopher C. Wells 2022-05-22 14:20:09 -07:00 committed by Christopher Charbonneau Wells
parent a6680d33f4
commit 1968bec727
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
#!/usr/bin/env bash
set -o errexit
pip install -r requirements.txt
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
python manage.py migrate
python3 manage.py migrate