1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

tool/make-snapshot: Use 6-spaces indent for SIZE and digests

to align with release note markdown.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2019-03-14 22:43:57 +00:00
parent 4d6e202977
commit 9e7f197c8e

View file

@ -525,9 +525,9 @@ revisions.collect {|rev| package(vcs, rev, destdir, tmp)}.flatten.each do |name|
name = "https://s3.amazonaws.com/ftp.r-l.o/pub/#{$s3}/#{Pathname(name).basename}"
end
puts "* #{$colorize.pass(name)}"
puts " SIZE: #{str.bytesize} bytes"
puts " SIZE: #{str.bytesize} bytes"
$digests.each do |alg|
printf " %-8s%s\n", "#{alg}:", Digest.const_get(alg).hexdigest(str)
printf " %-8s%s\n", "#{alg}:", Digest.const_get(alg).hexdigest(str)
end
end