summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2023-03-16 15:46:47 +0100
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-03-23 17:18:49 +0900
commitc3fa6679e64eb08a68723d3c757ae6dd14384e21 (patch)
treec3ea1445ba2db108970bc014ab2158c9a9dada6b /lib
parent164dc580084b10d46f1c44de5c36d907b0f6a385 (diff)
downloadruby-c3fa6679e64eb08a68723d3c757ae6dd14384e21.tar.gz
Don't suggest retrying with `--full-index` on gemspec errors
We're actually already using the full index here, so it makes no sense to suggest retrying the same thing.
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/remote_specification.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/remote_specification.rb b/lib/bundler/remote_specification.rb
index 7b539b22ae..f626a3218e 100644
--- a/lib/bundler/remote_specification.rb
+++ b/lib/bundler/remote_specification.rb
@@ -102,7 +102,7 @@ module Bundler
def _remote_specification
@_remote_specification ||= @spec_fetcher.fetch_spec([@name, @version, @original_platform])
@_remote_specification || raise(GemspecError, "Gemspec data for #{full_name} was" \
- " missing from the server! Try installing with `--full-index` as a workaround.")
+ " missing from the server!")
end
def method_missing(method, *args, &blk)