Exception: Bundler::Source::Git::GitCommandError

Inherits:
GitError show all
Defined in:
lib/bundler/source/git/git_proxy.rb

Instance Method Summary collapse

Methods inherited from BundlerError

all_errors, status_code

Constructor Details

#initialize(command, path = nil, extra_info = nil) ⇒ GitCommandError

Returns a new instance of GitCommandError.



28
29
30
31
32
33
34
# File 'lib/bundler/source/git/git_proxy.rb', line 28

def initialize(command, path = nil, extra_info = nil)
  msg = String.new
  msg << "Git error: command `git #{command}` in directory #{SharedHelpers.pwd} has failed."
  msg << "\n#{extra_info}" if extra_info
  msg << "\nIf this error persists you could try removing the cache directory '#{path}'" if path && path.exist?
  super msg
end