From 9dcb48b268a9c77a119c9e4df7d146be34249a68 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Mon, 2 Apr 2018 13:19:47 +0200 Subject: [PATCH] Split bash script into multiple lines --- bash/run-prod.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bash/run-prod.sh b/bash/run-prod.sh index 584dd06..3de7e3d 100644 --- a/bash/run-prod.sh +++ b/bash/run-prod.sh @@ -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 - \ No newline at end of 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 - \ No newline at end of file