diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-20 23:01:29 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-20 23:01:29 +0100 |
commit | 22c0d55395e631c8b53f80584ae0a4b559955db8 (patch) | |
tree | ed7909a1e830cc98ca40732f1a9a044d64fe23be | |
parent | fixed old migration script (diff) | |
download | newspipe-22c0d55395e631c8b53f80584ae0a4b559955db8.tar.gz newspipe-22c0d55395e631c8b53f80584ae0a4b559955db8.tar.bz2 newspipe-22c0d55395e631c8b53f80584ae0a4b559955db8.zip |
redirect output of db_create to /dev/null
-rwxr-xr-x | wait-for-postgres.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wait-for-postgres.sh b/wait-for-postgres.sh index 4cace9bd..e6bbd619 100755 --- a/wait-for-postgres.sh +++ b/wait-for-postgres.sh @@ -14,6 +14,6 @@ done >&2 echo "Postgres is up - executing command" export Newspipe_CONFIG=/newspipe/instance/production.py -poetry run ./manager.py db_create +poetry run ./manager.py db_create >/dev/null poetry run pybabel compile -d newspipe/translations poetry run ./runserver.py |