diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rwxr-xr-x | bin/rbot | 19 |
2 files changed, 21 insertions, 0 deletions
@@ -2,6 +2,8 @@ * New Auth Framework: document and fine tune permissions view the auth core botmodule. + * Version: when run from a svn checkout, the bot now tries to report + which svn revision it's at, and if there are local changes 2006-08-31 Giuseppe Bilotta <giuseppe.bilotta@gmail.com> @@ -32,6 +32,25 @@ require 'fileutils' $version="0.9.11-svn" $opts = Hash.new +if $version =~ /svn/ + up = File.dirname(__FILE__) + "/.." + rev = " (unknown revision)" + begin + svn_out = `svn info #{up}` + if svn_out =~ /Last Changed Rev: (\d+)/ + rev = " (revision #{$1}" + end + svn_st = `svn st #{up}` + if svn_st =~ /^M / + rev << ", local changes" + end + rev << ")" + rescue => e + puts e.inspect + end + $version += rev +end + orig_opts = ARGV.dup opts = GetoptLong.new( |