summaryrefslogtreecommitdiff
path: root/tool/vcs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/vcs.rb')
-rw-r--r--tool/vcs.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/vcs.rb b/tool/vcs.rb
index cf9af3a844..0866131926 100644
--- a/tool/vcs.rb
+++ b/tool/vcs.rb
@@ -137,7 +137,7 @@ class VCS
def url
unless defined?(@url)
- url = IO.pread(%W"svn info --xml #{@srcdir}")[/<url>(.*)<\/url>/, 1]
+ url = IO.pread(%W"svn info --xml #{@srcdir}")[/<root>(.*)<\/root>/, 1]
@url = URI.parse(url+"/") if url
end
@url