summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
Diffstat (limited to 'tool')
-rwxr-xr-xtool/make-snapshot4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot
index 29d9d5b0bd..9dae143a20 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -369,8 +369,8 @@ _touch-unicode-files:
if File.exist?("gems/bundled_gems")
gems = Dir.glob("gems/*.gem")
gems -= File.readlines("gems/bundled_gems").map {|line|
- n, v, _ = line.split(' ')
- "gems/#{n}-#{v}.gem"
+ name, version, _ = line.split(' ')
+ "gems/#{name}-#{version}.gem"
}
FileUtils.rm_f(gems)
else