mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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:
parent
a3f5265fd1
commit
2d017d6126
1 changed files with 5 additions and 1 deletions
|
@ -569,7 +569,11 @@ elsif $svn
|
||||||
elsif $git
|
elsif $git
|
||||||
abort "#{File.basename $0}: use -srcdir with cloned local repository"
|
abort "#{File.basename $0}: use -srcdir with cloned local repository"
|
||||||
else
|
else
|
||||||
vcs = VCS::SVN.new(SVNURL)
|
begin
|
||||||
|
vcs = VCS.detect(File.expand_path("../..", __FILE__))
|
||||||
|
rescue VCS::NotFoundError
|
||||||
|
vcs = VCS::SVN.new(SVNURL)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
success = true
|
success = true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue