make-snapshot: default to the toplevel directory

As this tool has been intended to use in a working directory,
assume that the toplevel directory is under the VCS, and SVN will
no longer be canonical.
This commit is contained in:
Nobuyoshi Nakada 2019-09-08 00:48:18 +09:00
Родитель a3f5265fd1
Коммит 2d017d6126
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -569,7 +569,11 @@ elsif $svn
elsif $git
abort "#{File.basename $0}: use -srcdir with cloned local repository"
else
vcs = VCS::SVN.new(SVNURL)
begin
vcs = VCS.detect(File.expand_path("../..", __FILE__))
rescue VCS::NotFoundError
vcs = VCS::SVN.new(SVNURL)
end
end
success = true