diff options
Diffstat (limited to 'lib/bundler/source/git/git_proxy.rb')
-rw-r--r-- | lib/bundler/source/git/git_proxy.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/bundler/source/git/git_proxy.rb b/lib/bundler/source/git/git_proxy.rb index 645851286c..f89e465c07 100644 --- a/lib/bundler/source/git/git_proxy.rb +++ b/lib/bundler/source/git/git_proxy.rb @@ -181,6 +181,14 @@ 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") + idx = command.index("--depth") + if idx + command.delete_at(idx) + command.delete_at(idx) + 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 |