diff options
author | Andre Arko <andre@arko.net> | 2010-11-13 01:08:42 -0600 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2010-11-13 01:15:14 -0600 |
commit | 2da8338914224935464a003ac24f7c3695c9f71b (patch) | |
tree | 40d5d1abc74b55e79dc2c8bc6da2b161ecb1a017 /bin/bundle | |
parent | b500959a7e9f88581d02c6078af0d2481bb1a515 (diff) | |
download | bundler-2da8338914224935464a003ac24f7c3695c9f71b.tar.gz |
ENV["DEBUG"] is so ghetto
Diffstat (limited to 'bin/bundle')
-rwxr-xr-x | bin/bundle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bundle b/bin/bundle index dcd0fdbbbc..6efdf51dd7 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["DEBUG"] + Bundler.ui.debug e.backtrace.join("\n") exit e.status_code rescue Interrupt Bundler.ui.error "\nQuitting..." |