summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-14 22:43:57 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-14 22:43:57 +0000
commit9e7f197c8e0c20bdf96ab7438e30b0457a85ec72 (patch)
tree4013f07b81ca34f33a440e18f2aeafd1ef20b733 /tool
parent4d6e20297783257574d8143e95fb55aafd91db66 (diff)
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
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 66d78d2b58..93b193910f 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -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