Fix start_db.sh again
This commit is contained in:
parent
90d3c9b7f5
commit
e646dd9d83
1 changed files with 2 additions and 2 deletions
|
@ -32,8 +32,8 @@ elif [[ $# == 1 ]] && [[ $1 == "run" ]]; then
|
|||
elif [[ $# == 1 ]] && [[ $1 == "run_without_output" ]]; then
|
||||
echo "Processing updates and running server without output"
|
||||
pushd src 2>&1 > /dev/null
|
||||
python manage.py processupdates 2>&1 | (grep -e "^ERROR" -e "^WARNING" -e "^HTTP" || true)
|
||||
python manage.py runserver 2>&1 | (grep -e "^ERROR" -e "^WARNING" -e "^HTTP" || true)
|
||||
python manage.py processupdates 2>&1 | (grep -v "^DEBUG " || true)
|
||||
python manage.py runserver 2>&1 | (grep -v "^DEBUG " || true)
|
||||
popd 2>&1 > /dev/null
|
||||
elif [[ $# > 0 ]] && [[ $1 == "manage" ]]; then
|
||||
pushd src
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue