summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-09 11:04:09 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-09 11:04:09 +0000
commitb795f9bd36dcf71fd0495d493b23752b73f4950d (patch)
tree9f9bf9eec676341cfd363f20171ecc289fb1ed64
parent5133bfad5df57c3399d1ec13a33e944d90fd613b (diff)
make-snapshot: try downloading Unicode files
Remove empty UNICODE_FILES list to update Unicode files like as r67025, for 2.6 branch. [Bug #15593] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67040 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rwxr-xr-xtool/make-snapshot1
1 files changed, 1 insertions, 0 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot
index 6ec86b805e..66d78d2b58 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -402,6 +402,7 @@ def package(vcs, rev, destdir, tmp = nil)
status.scan(/^s([%,])@([A-Za-z_][A-Za-z_0-9]*)@\1(.*?)\1g$/) do
vars[$2] ||= $3
end
+ vars.delete("UNICODE_FILES") # for stable branches
vars["UNICODE_VERSION"] = $unicode_version if $unicode_version
args = vars.dup
mk.gsub!(/@([A-Za-z_]\w*)@/) {args.delete($1); vars[$1] || ENV[$1]}