summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorPatrick Helm <deradon87@gmail.com>2014-11-21 17:42:11 +0100
committerPatrick Helm <deradon87@gmail.com>2014-11-21 17:42:11 +0100
commit7bd3a9f6c9011a7d6cdd979e14d79564830fe25b (patch)
tree65aa899fdf46a61cfe511447a433ca2a845910ad /bin
parent465b12ea2cdd21d5ad4a852d3b722bb57711449d (diff)
downloadbundler-7bd3a9f6c9011a7d6cdd979e14d79564830fe25b.tar.gz
Fixes: Ancient version check matches unrelated gems
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bundle2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bundle b/bin/bundle
index 63285e96e2..89c823eae3 100755
--- a/bin/bundle
+++ b/bin/bundle
@@ -6,7 +6,7 @@ Signal.trap("INT") { exit 1 }
require 'bundler'
# Check if an older version of bundler is installed
$LOAD_PATH.each do |path|
- if path =~ %r'/bundler-0.(\d+)' && $1.to_i < 9
+ if path =~ %r'/bundler-0\.(\d+)' && $1.to_i < 9
err = "Looks like you have a version of bundler that's older than 0.9.\n"
err << "Please remove your old versions.\n"
err << "An easy way to do this is by running `gem cleanup bundler`."