summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2011-09-17 15:26:07 -0700
committerAndre Arko <andre@arko.net>2011-09-17 15:26:07 -0700
commit9c15875cf5edfc15eeb973d1de9cc5e6d2577f4c (patch)
treea1d17efc80f595ce29334355164883e68e83a81a /bin
parent3a2a18a112015156e0d5ac1c7f9918cbc0be1b39 (diff)
downloadbundler-9c15875cf5edfc15eeb973d1de9cc5e6d2577f4c.tar.gz
Fix the help spec for the 0.8 error
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bundle4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/bundle b/bin/bundle
index b6adbed50d..b2aa229425 100755
--- a/bin/bundle
+++ b/bin/bundle
@@ -4,7 +4,9 @@ begin
# Check if an older version of bundler is installed
$:.each do |path|
if path =~ %r'/bundler-0.(\d+)' && $1.to_i < 9
- abort "Please remove 0.8 versions of bundler. This can be done by running `gem cleanup bundler`."
+ err = "Please remove Bundler 0.8 versions."
+ err << "This can be done by running `gem cleanup bundler`."
+ abort(err)
end
end
require 'bundler/cli'