summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2006-09-01 16:06:39 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2006-09-01 16:06:39 +0000
commit5994535a9fd47190a54ac1a0d723cd64ec713641 (patch)
tree39a4feea44b8f698aaf9f91eb17733b0a0ef91de /bin
parent3462b9d3909635affe9561b476fd7a5326d53709 (diff)
rbot now tries to report svn revision when ran from a svn checkout
Diffstat (limited to 'bin')
-rwxr-xr-xbin/rbot19
1 files changed, 19 insertions, 0 deletions
diff --git a/bin/rbot b/bin/rbot
index ce5c86bd..8fba53d6 100755
--- a/bin/rbot
+++ b/bin/rbot
@@ -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(