diff options
| author | Kazuhiro NISHIYAMA <zn@mbf.nifty.com> | 2019-10-08 00:00:24 +0900 |
|---|---|---|
| committer | Kazuhiro NISHIYAMA <zn@mbf.nifty.com> | 2019-10-08 00:00:24 +0900 |
| commit | 7abb02771a188671a6ddc3ccbe87dcecc4fe645f (patch) | |
| tree | fb0960d7175ca8286a1f42d555477db457940bd1 | |
| parent | 468184a996c99d1f94f94d7468f65e386cf13564 (diff) | |
Fix typo [ci skip]
pointed out by ruby-trunk-changes
| -rwxr-xr-x | tool/make-snapshot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot index 666fd1da84..78816c2d85 100755 --- a/tool/make-snapshot +++ b/tool/make-snapshot @@ -630,9 +630,9 @@ end yaml = info.values.to_yaml json = info.values.to_json -puts "#{$colorize.pass('JSON:')}" -puts yaml puts "#{$colorize.pass('YAML:')}" +puts yaml +puts "#{$colorize.pass('JSON:')}" puts json infodir = Pathname(destdir) + 'info' infodir.mkpath |
