From f16b9e7f268dc5abd649c95b710c964448982574 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 29 Mar 2021 15:14:21 +0900 Subject: sync_default_gems.rb: IO#puts prints a newline between each argument [ci skip] --- tool/sync_default_gems.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index 5b64c83f8c..935b9ef0d7 100644 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -402,7 +402,7 @@ def sync_default_gems_with_commits(gem, ranges, edit: nil) end puts "Try to pick these commits:" - puts commits.map{|commit| commit.join(": ")}.join("\n") + puts commits.map{|commit| commit.join(": ")} puts "----" failed_commits = [] -- cgit v1.2.3