Merge pull request #988 from siznax/fix-examples

fixed syntax errors in examples/gunicorn_rc.
This commit is contained in:
Randall Leeds 2015-02-27 12:44:50 -08:00
commit 5b3535bf64

View File

@ -6,7 +6,7 @@ PID=/var/run/gunicorn.pid
APP=main:application
if [ -f $PID ]; then rm $PID fi
if [ -f $PID ]; then rm $PID; fi
cd $ROOT
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pidfile=$PID $APP
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pid=$PID $APP