summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-08-02 14:34:34 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-08-05 18:32:24 -0500
commit6abce36b12e47e48e89ac6e85b1a9eafed4ffcd8 (patch)
treecb945858668d53b7c854dce148e067981088ba9e
parente23ea1519cfd9164053cb0eca84c3447ed6a2d57 (diff)
downloadbundler-6abce36b12e47e48e89ac6e85b1a9eafed4ffcd8.tar.gz
[GitProxy] Wrap retry command name in backticks
-rw-r--r--lib/bundler/source/git/git_proxy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/source/git/git_proxy.rb b/lib/bundler/source/git/git_proxy.rb
index 84ff5283ba..693492f3d2 100644
--- a/lib/bundler/source/git/git_proxy.rb
+++ b/lib/bundler/source/git/git_proxy.rb
@@ -147,7 +147,7 @@ module Bundler
end
def git_retry(command)
- Bundler::Retry.new("git #{command}", GitNotAllowedError).attempts do
+ Bundler::Retry.new("`git #{command}`", GitNotAllowedError).attempts do
git(command)
end
end