Skip to content

Commit 2c7b420

Browse files
committed
ci: improve the alignment of the results of file size comparisons in compare_pr_to_master.v
1 parent 019fc8e commit 2c7b420

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎.github/workflows/compare_pr_to_master.v‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ fn compare_size(fpath1 string, fpath2 string) {
4646
size1 := os.file_size(fpath1)
4747
size2 := os.file_size(fpath2)
4848
diff_ := i64(size2) - i64(size1)
49-
println('>>>>>> size("${fpath2:15}") - size("${fpath1:15}") = ${size2:10} - ${size1:10} = ${diff_:10}')
49+
println('>>>>>> size("${fpath2:17}") - size("${fpath1:17}") = ${size2:10} - ${size1:10} = ${diff_:10}')
5050
}
5151

5252
fn vcompare(vold string, vnew string) {

0 commit comments

Comments
 (0)