Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

0/5 * * * * /bin/bash -l -c 'cd /home/mss/ruby/example && RAILS_ENV=development /usr/local/bin/bundle exec rake check_me_out --silent >> /tmp/cron_log.log 2>&1'

Above cron throws an error "bash: bundle: command not found..."

The command works just fine from the command line

Any help will be appreciated.

share|improve this question
Any context about what you are trying to do before jumping straight into the code? – Darin Dimitrov Feb 9 at 21:58
I would assume the user, as which the cron job runs does not know about the command bundle or has no access to it. – scones Feb 9 at 21:59
Trying to rake a task in rails. See my comments above I am able to run it from my command line without any issues but not from the cron. – PackedUp Feb 9 at 22:01

1 Answer

Okay so I got this working. Cron does not load the profile settings. I had to load the bash_profile as part of the commands and now it works.

0/5 * * * * /bin/bash -l -c 'source ~/.bash_profile && cd /home/mss/ruby/example && RAILS_ENV=development bin/rake check_me_out --silent >> /tmp/cron_log.log 2>&1'

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.