mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Fix the order of redirects (#1511)
Redirect from stderr to stdout should be before redirect to a log file
This commit is contained in:
parent
cf15db20b9
commit
efc2620c62
1 changed files with 1 additions and 1 deletions
|
@ -15,4 +15,4 @@ elif [ -f "$HOME/.rvm/scripts/rvm" ]; then
|
|||
fi
|
||||
|
||||
app=$1; config=$2; log=$3;
|
||||
cd $app && exec bundle exec puma -C $config 2>&1 >> $log
|
||||
cd $app && exec bundle exec puma -C $config >> $log 2>&1
|
||||
|
|
Loading…
Add table
Reference in a new issue