summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-07-23 16:23:26 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-07-24 10:31:38 +0200
commit04a04719f00c99c846973906111dae4e34310bff (patch)
tree4bac462e3eab890998bdfd1d380d619ff2ade7bd
parenta8874423f347efa52d69b332cc855def812e9b5b (diff)
downloadbundler-04a04719f00c99c846973906111dae4e34310bff.tar.gz
Restore `cache_all` flag removal
-rw-r--r--lib/bundler/cli.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb
index c7af38bcaf..2f35b83c36 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -411,9 +411,10 @@ module Bundler
end
desc "#{Bundler.feature_flag.bundler_3_mode? ? :cache : :package} [OPTIONS]", "Locks and then caches all of the gems into vendor/cache"
- method_option "all", :type => :boolean,
- :default => Bundler.feature_flag.cache_all?,
- :banner => "Include all sources (including path and git)."
+ unless Bundler.feature_flag.cache_all?
+ method_option "all", :type => :boolean,
+ :banner => "Include all sources (including path and git)."
+ end
method_option "all-platforms", :type => :boolean, :banner => "Include gems for all platforms present in the lockfile, not only the current one"
method_option "cache-path", :type => :string, :banner =>
"Specify a different cache path than the default (vendor/cache)."