summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsutosh Palai <asupalai@gmail.com>2016-08-09 23:59:57 +0530
committerAsutosh Palai <asupalai@gmail.com>2016-08-16 09:48:27 +0530
commit754fed8ead853aa546b798570e8af113c7341e9d (patch)
tree105846f8f0a119a8a7e36931305f184fb350b399
parentf0ea6353f14d7f17e9b95196be790cf876b5ba23 (diff)
downloadbundler-754fed8ead853aa546b798570e8af113c7341e9d.tar.gz
Indenting the backtrace on plugin error
-rw-r--r--lib/bundler/plugin.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/plugin.rb b/lib/bundler/plugin.rb
index 172c939f53..1f0297f29b 100644
--- a/lib/bundler/plugin.rb
+++ b/lib/bundler/plugin.rb
@@ -38,7 +38,7 @@ module Bundler
save_plugins names, specs
rescue PluginError => e
specs.values.map {|spec| Bundler.rm_rf(spec.full_gem_path) } if specs
- Bundler.ui.error "Failed to install plugin #{name}: #{e.message}\n #{e.backtrace.join("\n")}"
+ Bundler.ui.error "Failed to install plugin #{name}: #{e.message}\n #{e.backtrace.join("\n ")}"
end
# Evaluates the Gemfile with a limited DSL and installs the plugins