Use `2>&1` because Bash 3 does not support `&>>`

This commit is contained in:
Jacob Vosmaer 2013-10-22 10:22:45 +02:00
parent 5717304098
commit 3bef6b46f8
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ gitlab_user=$(ls -l config.ru | awk '{print $3}')
function stop
{
bundle exec sidekiqctl stop $sidekiq_pidfile &>> $sidekiq_logfile
bundle exec sidekiqctl stop $sidekiq_pidfile >> $sidekiq_logfile 2>&1
}
function killall
@ -32,7 +32,7 @@ function start_no_deamonize
function start_sidekiq
{
bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,gitlab_shell,common,default -e $RAILS_ENV -P $sidekiq_pidfile $@ &>> $sidekiq_logfile
bundle exec sidekiq -q post_receive,mailer,system_hook,project_web_hook,gitlab_shell,common,default -e $RAILS_ENV -P $sidekiq_pidfile $@ >> $sidekiq_logfile 2>&1
}
case "$1" in