summaryrefslogtreecommitdiff
path: root/tool/make-snapshot
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-24 14:05:50 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-24 14:05:50 +0000
commit8d1dacb2290c4a61a3c92769e5cb1814e09858b4 (patch)
tree653759627358d878557fb193e4adcefa788dc523 /tool/make-snapshot
parentcd911b9367b6fba5a237eb21e1e39c0725ad742e (diff)
export_changelog must specify the branch's url
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/make-snapshot')
-rwxr-xr-xtool/make-snapshot2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot
index b235282350..d8e635af40 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -225,7 +225,7 @@ def package(vcs, rev, destdir, tmp = nil)
unless /\Ar(\d+) / =~ f.readline
abort "#{File.basename $0}: Cannot find revision from '#{last_ChangeLog}'"
end
- vcs.export_changelog($1.to_i, revision.to_i, "#{v}/ChangeLog")
+ vcs.export_changelog(url, $1.to_i, revision.to_i, "#{v}/ChangeLog")
end
open("#{v}/revision.h", "wb") {|f| f.puts "#define RUBY_REVISION #{revision}"}