diff options
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 |