From c01d7d6cab9b71c13d7a09fb65ce2a0016da3360 Mon Sep 17 00:00:00 2001 From: HD Moore Date: Sun, 25 Mar 2007 07:57:54 +0000 Subject: [PATCH] Updated to allow 1.8.2 on OS X, since technically it works fine git-svn-id: file:///home/svn/framework3/trunk@4568 4d416f70-5f16-0410-b530-b9f4589650da --- lib/msf/sanity.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/msf/sanity.rb b/lib/msf/sanity.rb index 00cff5ff1e..5f9109f1cc 100644 --- a/lib/msf/sanity.rb +++ b/lib/msf/sanity.rb @@ -16,8 +16,8 @@ if ([1].pack('n') == "\x01\x00") exit(0) end -# Check for ruby 1.8.3 as the minimal supported version -if (RUBY_VERSION =~ /^1\.[0-7]\./ or RUBY_VERSION =~ /^1\.8\.[0-2]$/) - puts "*** This version of ruby is not supported, please upgrade to 1.8.3+" +# Check for ruby 1.8.2 as the minimal supported version +if (RUBY_VERSION =~ /^1\.[0-7]\./ or RUBY_VERSION =~ /^1\.8\.[0-1]$/) + puts "*** This version of ruby is not supported, please upgrade to 1.8.2+" exit(0) end