* tool/vcs.rb (VCS::SVN#export): workaround for the case
  wcroot-abspath is not present.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49318 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-01-18 05:24:14 +00:00
Родитель fbbf3afc11
Коммит 6b6178fc3d
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -195,9 +195,9 @@ class VCS
end
def export(revision, url, dir)
if @srcdir
if @srcdir and (rootdir = wcroot)
srcdir = File.realpath(@srcdir)
rootdir = wcroot+"/"
rootdir << "/"
if srcdir.start_with?(rootdir)
subdir = srcdir[rootdir.size..-1]
subdir = nil if subdir.empty?