summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2012-03-13 07:56:14 -0700
committerRyan Bigg <radarlistener@gmail.com>2012-03-13 07:57:42 -0700
commit3e71c5df913153247d3a4d205ef77a281ba87e69 (patch)
tree5696fae1a197de724c3057468b260547633a6f30
parentbd52436e06ff55bd3fd872727842c8d9f3964115 (diff)
downloadbundler-3e71c5df913153247d3a4d205ef77a281ba87e69.tar.gz
Include 'your Gemfile and Gemfile.lock' in fatal exception error
-rwxr-xr-xbin/bundle6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/bundle b/bin/bundle
index 50764bfa42..2c92e2b7d4 100755
--- a/bin/bundle
+++ b/bin/bundle
@@ -24,8 +24,8 @@ rescue SystemExit => e
rescue Exception => e
Bundler.ui.error "Unfortunately, a fatal error has occurred. " +
"Please report this error to the Bundler issue tracker at " +
- "https://github.com/carlhuda/bundler/issues so that we can fix it." +
- " Please include the full output of the command." +
- " Thanks!"
+ "https://github.com/carlhuda/bundler/issues so that we can fix it. " +
+ "Please include the full output of the command, your Gemfile and Gemfile.lock. " +
+ "Thanks!"
raise e
end