summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitris Zorbas <zorbash@skroutz.gr>2015-10-06 11:30:16 +0300
committerDimitris Zorbas <zorbash@skroutz.gr>2015-10-06 11:30:16 +0300
commit99ff4d673a4c956712fe0820c8620d09e624ffc2 (patch)
tree24a2f3bfa919f35b67215357e069e30465c64bd5
parenta9dfc80300bfbad1e0eda9e8316b334f0ee5f752 (diff)
downloadbundler-99ff4d673a4c956712fe0820c8620d09e624ffc2.tar.gz
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