diff options
| author | Andre Arko <andre@arko.net> | 2011-09-17 15:26:07 -0700 |
|---|---|---|
| committer | Andre Arko <andre@arko.net> | 2011-09-17 15:26:07 -0700 |
| commit | 9c15875cf5edfc15eeb973d1de9cc5e6d2577f4c (patch) | |
| tree | a1d17efc80f595ce29334355164883e68e83a81a /bin/bundle | |
| parent | 3a2a18a112015156e0d5ac1c7f9918cbc0be1b39 (diff) | |
| download | bundler-9c15875cf5edfc15eeb973d1de9cc5e6d2577f4c.tar.gz | |
Fix the help spec for the 0.8 error
Diffstat (limited to 'bin/bundle')
| -rwxr-xr-x | bin/bundle | 4 |
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' |
