From e9c7fc7ca9bc15a9f84bdc356f7b6fac12988ccb Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 14 Sep 2019 23:47:33 +0900 Subject: Continue to export even if no notes/commits Just exporting may not imply exporting ChangeLog which needs notes/commits. [Bug #16167] --- tool/lib/vcs.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tool/lib/vcs.rb b/tool/lib/vcs.rb index 85a4827fe2..780ae346e1 100644 --- a/tool/lib/vcs.rb +++ b/tool/lib/vcs.rb @@ -584,7 +584,9 @@ 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 - system(COMMAND, "fetch", "origin", "+refs/notes/commits:refs/notes/commits", chdir: 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 -- cgit v1.2.1