From 02ba6a5df23e70333b79414fca90fa9d04969707 Mon Sep 17 00:00:00 2001 From: aszerW Date: Wed, 18 Mar 2026 23:38:07 +0800 Subject: [PATCH] =?UTF-8?q?fix(scripts):=20=E4=BF=AE=E6=AD=A3=E6=8A=A5?= =?UTF-8?q?=E5=91=8A=E4=BF=9D=E5=AD=98=E8=B7=AF=E5=BE=84=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将报告保存路径前缀默认值由 "report" 修改为 "results/report" - 确保报告文件默认保存在更合适的目录结构中 --- scripts/run_rotation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_rotation.py b/scripts/run_rotation.py index c502e3d..4b91195 100755 --- a/scripts/run_rotation.py +++ b/scripts/run_rotation.py @@ -40,7 +40,7 @@ def main(): parser.add_argument( "--save-path", type=str, - default="report", + default="results/report", help="报告保存路径前缀", ) args = parser.parse_args()