mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
vcs.rb: include svn property commits
* tool/vcs.rb (VCS::GIT.get_revisions): omit "." to include svn property only commits. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
372fe0d4a8
commit
8efd24bc28
1 changed files with 3 additions and 1 deletions
|
@ -261,7 +261,9 @@ class VCS
|
|||
log = IO.pread(logcmd)
|
||||
last = log[idpat, 1]
|
||||
if path
|
||||
log = IO.pread(logcmd + [path])
|
||||
cmd = logcmd
|
||||
cmd += [path] unless path == '.'
|
||||
log = IO.pread(cmd)
|
||||
changed = log[idpat, 1]
|
||||
else
|
||||
changed = last
|
||||
|
|
Loading…
Reference in a new issue