summaryrefslogtreecommitdiff
path: root/tool/make-snapshot
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-21 09:50:36 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-21 09:50:36 +0000
commit6faa0e12b0ca8a5b9b51bbdb6cf013914ddd1e34 (patch)
tree2546e2312a3fa622da3bdf3ea61a34b20f6d9249 /tool/make-snapshot
parentd5b34b5331244f375135faf6c196d886b011ee22 (diff)
[EXPERIMENTAL] Added test-bundled-gems task.
`test-bundled-gems` invoke test suite of bundled gems with build environment. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60247 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/make-snapshot')
-rwxr-xr-xtool/make-snapshot3
1 files changed, 2 insertions, 1 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot
index a005ebf297..29d9d5b0bd 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -369,7 +369,8 @@ _touch-unicode-files:
if File.exist?("gems/bundled_gems")
gems = Dir.glob("gems/*.gem")
gems -= File.readlines("gems/bundled_gems").map {|line|
- 'gems/'+line.split(' ').join('-')+'.gem'
+ n, v, _ = line.split(' ')
+ "gems/#{n}-#{v}.gem"
}
FileUtils.rm_f(gems)
else