1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[bundler/bundler] Correct default cache path

The default cache path is `vendor/cache`, not `vendor/bundle`.
https://github.com/bundler/bundler/commit/49256bb3d2
This commit is contained in:
Ivo Wever 2019-07-03 11:33:42 +02:00 committed by Hiroshi SHIBATA
parent e6dc7b5b5b
commit a375a4518f
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -151,7 +151,7 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
* `cache_path` (`BUNDLE_CACHE_PATH`): * `cache_path` (`BUNDLE_CACHE_PATH`):
The directory that bundler will place cached gems in when running The directory that bundler will place cached gems in when running
<code>bundle package</code>, and that bundler will look in when installing gems. <code>bundle package</code>, and that bundler will look in when installing gems.
Defaults to `vendor/bundle`. Defaults to `vendor/cache`.
* `clean` (`BUNDLE_CLEAN`): * `clean` (`BUNDLE_CLEAN`):
Whether Bundler should run `bundle clean` automatically after Whether Bundler should run `bundle clean` automatically after
`bundle install`. `bundle install`.