Last Updated: September 09, 2019
·
6.363K
· avgp

Fixing bundler issues like "git@github.com:... is not checked out. Please run `bundle install`"

This is one of the weirder issues and I am still not entirely sure, how that happens.
My current guess is, that it has something to do with the git repository in question being private and hosting mulitple gems.

To fix this, there is one really simple step:

$ bundle install --path vendor/cache

afterwards, a normal bundle install will work again.