diff options
author | Ellen Keal <[email protected]> | 2024-05-13 16:49:56 -0500 |
---|---|---|
committer | git <[email protected]> | 2024-05-22 06:01:51 +0000 |
commit | 5b9b6b4d2b58dc880ddd0a9d45bddc59aee43deb (patch) | |
tree | 2d98bd79b5e80363c5c1946fcd6e064b6343cae4 /lib/bundler/source | |
parent | ec9de0c4717b2942edba560b510a170f812a2f2c (diff) |
[rubygems/rubygems] move git clone depth error handling to else branch
https://github.com/rubygems/rubygems/commit/022eb473f8
Diffstat (limited to 'lib/bundler/source')
-rw-r--r-- | lib/bundler/source/git/git_proxy.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bundler/source/git/git_proxy.rb b/lib/bundler/source/git/git_proxy.rb index f89e465c07..2fc9c6535f 100644 --- a/lib/bundler/source/git/git_proxy.rb +++ b/lib/bundler/source/git/git_proxy.rb @@ -181,16 +181,16 @@ module Bundler if err.include?("Could not find remote branch") raise MissingGitRevisionError.new(command_with_no_credentials, nil, explicit_ref, credential_filtered_uri) - elsif err.include?("dumb http transport does not support shallow capabilities") + else idx = command.index("--depth") if idx command.delete_at(idx) command.delete_at(idx) + command_with_no_credentials = check_allowed(command) + err += "Retrying without --depth argument." end raise GitCommandError.new(command_with_no_credentials, path, err) - else - raise GitCommandError.new(command_with_no_credentials, path, err) end end end |