Split bash script into multiple lines
This commit is contained in:
parent
bd111cffb0
commit
9dcb48b268
1 changed files with 3 additions and 1 deletions
|
@ -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 -
|
Loading…
Reference in a new issue