diff options
-rwxr-xr-x | bin/rbot | 2 | ||||
-rwxr-xr-x | launch_here.rb | 2 | ||||
-rw-r--r-- | lib/rbot/rbotconfig.rb | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -47,7 +47,7 @@ require 'etc' require 'getoptlong' require 'fileutils' -$version ||= "0.9.11-git" +$version ||= "0.9.11-rc1" $version_timestamp ||= 0 $opts = Hash.new diff --git a/launch_here.rb b/launch_here.rb index b368f4c6..0978ac4f 100755 --- a/launch_here.rb +++ b/launch_here.rb @@ -8,7 +8,7 @@ puts "Running from #{SCM_DIR}" $:.unshift File.join(SCM_DIR, 'lib') -$version = '0.9.11-git' +$version = '0.9.11-rc1' pwd = Dir.pwd begin diff --git a/lib/rbot/rbotconfig.rb b/lib/rbot/rbotconfig.rb index 692113a9..eb55f965 100644 --- a/lib/rbot/rbotconfig.rb +++ b/lib/rbot/rbotconfig.rb @@ -27,7 +27,7 @@ class Bot begin debug "trying to load rubygems" require 'rubygems' - if $version =~ /^(.*)-git( .*)?$/ + if $version =~ /^(.*)-(?:git|rc\d)(?: .*)?$/ version = $1 else version = $version |