summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2015-10-10 23:07:53 +0900
committerHomu <homu@barosl.com>2015-10-10 23:07:53 +0900
commitc20dfdb26cb7f68253686c3679b881c535fd2b53 (patch)
treea54e47a9f731af2535ba6fafc8d3ad842410acfb
parent21b1e3b6ff0f4fc9ff7ffeaded1fefdd42bcf8eb (diff)
parent99ff4d673a4c956712fe0820c8620d09e624ffc2 (diff)
downloadbundler-c20dfdb26cb7f68253686c3679b881c535fd2b53.tar.gz
Auto merge of #4039 - Zorbash:typo-gem-helper, r=segiddins
Add missing backtick in Bundler::GemHelper#sh Since across the codebase and documentation shell commands are displayed wrapped in backticks, the command included in the error output of Bundler::GemHelper#sh should also be displayed in the same format.
-rw-r--r--lib/bundler/gem_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/gem_helper.rb b/lib/bundler/gem_helper.rb
index 88e61c5af2..70dded01ba 100644
--- a/lib/bundler/gem_helper.rb
+++ b/lib/bundler/gem_helper.rb
@@ -167,7 +167,7 @@ module Bundler
if code == 0
out
else
- raise(out.empty? ? "Running `#{cmd}' failed. Run this command directly for more detailed output." : out)
+ raise(out.empty? ? "Running `#{cmd}` failed. Run this command directly for more detailed output." : out)
end
end