So, I'm trying to implement a heroku-like deployment without using capistrano. To check and install gems I'm trying to use git hook and put the following commands in /hooks/post-receive:
bundle check || bundle install
But when I run git push
I get:
remote: hooks/post-receive: line 20: bundle: command not found.
I understand that a hook probably launches commands from the wrong environment and somehow I have to switch rvm environment from hook. I tried to use rvm use 1.8.7@rails3 in post-receive but it didn't help. Any ideas?
You might just have to make sure you source the user's environment at the top of the hook, for example:
$ source $HOME/.bash_profile # single user RVM setup
$ source /etc/profile # multi user RVM setup
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With