From 54964526c645010d9303a02ae0089761cbf7202f Mon Sep 17 00:00:00 2001 From: "NARUSE, Yui" Date: Thu, 12 Dec 2024 22:58:13 +0900 Subject: [PATCH] increase diff.renameLimit --- tool/format-release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/format-release b/tool/format-release index 258c25406d..72fc173000 100755 --- a/tool/format-release +++ b/tool/format-release @@ -91,7 +91,7 @@ eom if prev_tag # show diff shortstat tag = "v#{version.gsub(/[.\-]/, '_')}" - stat = `git -C #{rubydir} diff --shortstat #{prev_tag}..#{tag}` + stat = `git -C #{rubydir} diff -l0 --shortstat #{prev_tag}..#{tag}` files_changed, insertions, deletions = stat.scan(/\d+/) end