From 2c7b42030aeaec7fb193dd109084597e4a69997b Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 1 Aug 2025 16:23:19 +0300 Subject: [PATCH] ci: improve the alignment of the results of file size comparisons in compare_pr_to_master.v --- .github/workflows/compare_pr_to_master.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compare_pr_to_master.v b/.github/workflows/compare_pr_to_master.v index edd90c9bfe..e50f119b50 100755 --- a/.github/workflows/compare_pr_to_master.v +++ b/.github/workflows/compare_pr_to_master.v @@ -46,7 +46,7 @@ fn compare_size(fpath1 string, fpath2 string) { size1 := os.file_size(fpath1) size2 := os.file_size(fpath2) diff_ := i64(size2) - i64(size1) - println('>>>>>> size("${fpath2:15}") - size("${fpath1:15}") = ${size2:10} - ${size1:10} = ${diff_:10}') + println('>>>>>> size("${fpath2:17}") - size("${fpath1:17}") = ${size2:10} - ${size1:10} = ${diff_:10}') } fn vcompare(vold string, vnew string) {