aboutsummaryrefslogtreecommitdiffstats
path: root/tool/lib
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-09-15 02:16:15 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-09-15 11:22:32 +0900
commitdf4a4bd88c98a0b966d88ae825c14e891c5cfba2 (patch)
treeac3d891f44d4b7cda5312bd94c81224f838bd33a /tool/lib
parent1edcfd610703fb6f773e8f31f88f8ca920bda1ac (diff)
downloadruby-df4a4bd88c98a0b966d88ae825c14e891c5cfba2.tar.gz
make-snapshot: export ChangeLog from srcdir
Diffstat (limited to 'tool/lib')
-rw-r--r--tool/lib/vcs.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/tool/lib/vcs.rb b/tool/lib/vcs.rb
index 780ae346e1..250cd848fa 100644
--- a/tool/lib/vcs.rb
+++ b/tool/lib/vcs.rb
@@ -584,9 +584,6 @@ class VCS
def export(revision, url, dir, keep_temp = false)
system(COMMAND, "clone", "-c", "advice.detachedHead=false", "-s", (@srcdir || '.').to_s, "-b", url, dir) or return
- unless system(COMMAND, "fetch", "origin", "+refs/notes/commits:refs/notes/commits", chdir: dir, exception: false)
- warn "No notes/commits tree"
- end
(Integer === revision ? GITSVN : GIT).new(File.expand_path(dir))
end