summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorNobuhiro Nikushi <deneb.ge@gmail.com>2015-03-20 11:29:46 +0900
committerNobuhiro Nikushi <deneb.ge@gmail.com>2015-03-20 11:29:49 +0900
commit1c91f319a8a7ab02de714a603a13b06ccc8541d6 (patch)
tree24440aa16190d9bcbfb6d1564db6c1bfa1e5cc72 /bin
parentea168eab84dc0063248feb44b119914c07fab89a (diff)
downloadbundler-1c91f319a8a7ab02de714a603a13b06ccc8541d6.tar.gz
Missing regex escape
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bundler2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bundler b/bin/bundler
index 63285e96e2..89c823eae3 100755
--- a/bin/bundler
+++ b/bin/bundler
@@ -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`."