diff options
author | Andre Arko <andre@arko.net> | 2010-10-24 17:27:12 -0700 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2010-10-24 17:27:12 -0700 |
commit | a6a3d121cb70e95a79430db918104a47d3cb1be5 (patch) | |
tree | bb1bafe0867e4c69fc1e570053313943fe37ae18 | |
parent | 43a428d4050a1d56ed753443c13da19872cf4630 (diff) | |
download | bundler-a6a3d121cb70e95a79430db918104a47d3cb1be5.tar.gz |
Expand ISSUES to explain each deletion
-rw-r--r-- | ISSUES.md | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -6,7 +6,19 @@ Instructions for common Bundler use-cases can be found on the [Bundler documenta After reading the documentation, try these troubleshooting steps: - rm -rf ~/.bundle/ ~/.gem/ .bundle/ vendor/cache/ Gemfile.lock + # remove user-specific gems and git repos + rm -rf ~/.bundle/ ~/.gem/ + + # remove project-specific settings and git repos + rm -rf .bundle/ + + # remove project-specific cached .gem files + rm -rf vendor/cache/ + + # remove the saved resolve of the Gemfile + rm -rf Gemfile.lock + + # try to install one more time bundle install ## Reporting unresolved problems |