mirror of
https://github.com/git/git.git
synced 2024-11-27 20:14:30 +08:00
t/aggregate-results: whitespace fix
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
3901a8c866
commit
300072f486
@ -10,9 +10,9 @@ for file
|
||||
do
|
||||
while read type value
|
||||
do
|
||||
case $type in
|
||||
'')
|
||||
continue ;;
|
||||
case $type in
|
||||
'')
|
||||
continue ;;
|
||||
fixed)
|
||||
fixed=$(($fixed + $value)) ;;
|
||||
success)
|
||||
@ -20,9 +20,9 @@ do
|
||||
failed)
|
||||
failed=$(($failed + $value)) ;;
|
||||
broken)
|
||||
broken=$(( $broken + $value)) ;;
|
||||
broken=$(($broken + $value)) ;;
|
||||
total)
|
||||
total=$(( $total + $value)) ;;
|
||||
total=$(($total + $value)) ;;
|
||||
esac
|
||||
done <"$file"
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user