Fix bash script

This commit is contained in:
Gabriel Augendre 2018-04-02 13:19:25 +02:00
parent 10d80e3e15
commit 8e8886024c
No known key found for this signature in database
GPG Key ID: F360212F958357D4
1 changed files with 3 additions and 1 deletions

View File

@ -1,2 +1,4 @@
#!/bin/sh
python3 manage.py migrate && python3 manage.py collectstatic --noinput && gunicorn refunds.wsgi -b 0.0.0.0:8000 --log-file -
pipenv run python manage.py migrate && \
pipenv run python manage.py collectstatic --noinput && \
pipenv run gunicorn refunds.wsgi -b 0.0.0.0:8000 --log-file -