rvm + capistrano + gitosis

I don't know how people do it, but I'm having huge headaches getting these things to work with each other. At the moment, doing a cap deploy:setup gives me this error:

/Users/mikool/.rvm/gems/ree-1.8.7-2011.03@rails3/gems/ capistrano-2.5.19/lib/capistrano/recipes/deploy.rb:55:in `join': can't convert nil into String (TypeError)

I've looked around but can't find a solution that works. It actually did not give me this error before, but once I setup keys to my cap deploying user, I started getting this error.

I don’t know how people do it, but I’m having huge headaches getting

these things to work with each other. At the moment, doing a cap

deploy:setup gives me this error:

/Users/mikool/.rvm/gems/ree-1.8.7-2011.03@rails3/gems/

capistrano-2.5.19/lib/capistrano/recipes/deploy.rb:55:in `join’: can’t

convert nil into String (TypeError)

The error is pointing out that you are trying to do a join on an object with nothing in it (nil).

I’ve looked around but can’t find a solution that works. It actually

did not give me this error before, but once I setup keys to my cap

deploying user, I started getting this error.

Check over this code and make sure it’s correct. If you can’t see the issue post the code here for the group to see.

B.