diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2023-03-16 15:46:47 +0100 |
---|---|---|
committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-03-23 17:18:49 +0900 |
commit | c3fa6679e64eb08a68723d3c757ae6dd14384e21 (patch) | |
tree | c3ea1445ba2db108970bc014ab2158c9a9dada6b /lib/bundler | |
parent | 164dc580084b10d46f1c44de5c36d907b0f6a385 (diff) | |
download | ruby-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/bundler')
-rw-r--r-- | lib/bundler/remote_specification.rb | 2 |
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) |