Split bash script into multiple lines

This commit is contained in:
Gabriel Augendre 2018-04-02 13:19:47 +02:00
parent bd111cffb0
commit 9dcb48b268
No known key found for this signature in database
GPG key ID: F360212F958357D4

View file

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