views:

43

answers:

1

Hello, whenever I run the bundle install command, bundler creates a directory in my projects root with the name '?'. How can I prevent this from happening?

I'm assuming the ? directory is due to the fact that some path has not been found, but which? And how could I tackle this issue?

Best regards, DBA

A: 

Deleting the .bundle directory and running bundle install again seems to have solved the issue.

DBA