summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2010-10-21 11:38:25 -0700
committerAndre Arko <andre@arko.net>2010-10-21 11:41:25 -0700
commitf14d62e11bf742dd99b6449ffe4b8a1310e255c1 (patch)
tree128cc39a528ccffabd2d2a53377d0000b3514289 /bin
parentbe1d742492b2194182da86ae321ba1b251c141c6 (diff)
downloadbundler-f14d62e11bf742dd99b6449ffe4b8a1310e255c1.tar.gz
CLI error backtrace should print on the same DEBUG as ui.debug
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bundle2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bundle b/bin/bundle
index f7b0dbc6cf..dcd0fdbbbc 100755
--- a/bin/bundle
+++ b/bin/bundle
@@ -13,7 +13,7 @@ begin
Bundler::CLI.start
rescue Bundler::BundlerError => e
Bundler.ui.error e.message
- Bundler.ui.error e.backtrace.join("\n") if ENV["BUNDLE_DEBUG"]
+ Bundler.ui.error e.backtrace.join("\n") if ENV["DEBUG"]
exit e.status_code
rescue Interrupt
Bundler.ui.error "\nQuitting..."