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

I have recently updated my gitorious instance and I’m getting an error now.

Error message: https://github.com/roman/rots.git (at master) is not checked out. Please run bundle install (Bundler::GitError) Exception class: PhusionPassenger::UnknownError Application root: /var/www/gitorious

Does anyone have ideia how could i fix it? I have tried run bundle pack and bundle install but it didnt solve

Thanks

share|improve this question

3 Answers

I got this from another thread but it seemed to work for me.

bundle pack

bundle install --path vendor/cache

That last command seemed to really do a git clone.

share|improve this answer
This worked for me too – Shane O'Grady Nov 21 '11 at 11:37
up vote 0 down vote accepted

I solved downgrading it, checking out an older gitorious version and running bundle install and bundle pack but there's gitorious recommendation for upgrading in the wiki.

share|improve this answer

The issue is probably that the clone URL (https://github.com/roman/rots.git) specified in the Gemfile is not anonymously clonable when you bundle install dependencies, which is why myself (and other on other forums) are getting an HTTP 403 is similar contexts. Try editing the Gemfile and using the git protocol version of the URL instead:

git://github.com/roman/rots.git

As soon as I made this change I could bundle install to get the dependency cloned as expected, and move on to the next issue. :)

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.