I am having trouble running the post-receive hook as follows:
#!/bin/sh
unset $(git rev-parse --local-env-vars)
cd ~/commodity
git pull origin master
bundle install
bundle exec rake assets:precompile
thin restart
I am pushing from local to remote and I am getting this error:
Counting objects: 5, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 319 bytes, done.
Total 3 (delta 2), reused 0 (delta 0)
remote: From /var/www/html/test
remote: * branch master -> FETCH_HEAD
remote: Updating a06129c..c3c3da3
remote: hooks/post-receive: line 19: bundle: command not found
remote: hooks/post-receive: line 20: bundle: command not found
remote: hooks/post-receive: line 21: thin: command not found
error: cannot run hooks/post-receive: No such file or directory
When I clone my repository on the server and push, the hook runs and everything is great. Any ideas why the push wont trigger the bundle commands when pushing from my local machine?
Thanks!
echo $PATHinpost-receiveand compare it toecho $PATHyou see in a shell. – Ben Graham Nov 14 '12 at 4:15bundleandthinbinaries in that path? Switch to the user in the SSH path, e.g. for git@hostname:repo.git, dosu git. Can that user see thebundleandthincommands? What happens when you try to run them? If necessary, modifyPATHin the post-receive script so the commands can be found, likePATH=$PATH:/path/to/bundle– Ben Graham Nov 14 '12 at 5:36