File tree Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 12
12
< tbody > < tr >
13
13
< th > Go</ th >
14
14
< th > 36</ th >
15
- < th > 8927 </ th >
16
- < th > 1434 </ th >
15
+ < th > 8929 </ th >
16
+ < th > 1433 </ th >
17
17
< th > 425</ th >
18
- < th > 7068 </ th >
19
- < th > 1426 </ th >
20
- < th > 352834 </ th >
18
+ < th > 7071 </ th >
19
+ < th > 1428 </ th >
20
+ < th > 352948 </ th >
21
21
</ tr > < tr >
22
22
< th > Java</ th >
23
23
< th > 24</ th >
607
607
< tfoot > < tr >
608
608
< th > Total</ th >
609
609
< th > 176</ th >
610
- < th > 26777 </ th >
611
- < th > 3032 </ th >
610
+ < th > 26779 </ th >
611
+ < th > 3031 </ th >
612
612
< th > 1761</ th >
613
- < th > 21984 </ th >
614
- < th > 2412 </ th >
615
- < th > 1810432 </ th >
613
+ < th > 21987 </ th >
614
+ < th > 2414 </ th >
615
+ < th > 1810546 </ th >
616
616
</ tr > </ tfoot >
617
617
</ table > </ body > </ html >
Original file line number Diff line number Diff line change @@ -646,9 +646,11 @@ func fileSummarizeMulti(input chan *FileJob) string {
646
646
str .WriteString (val )
647
647
str .WriteString ("\n " )
648
648
} else {
649
- _ = ioutil .WriteFile (t [1 ], []byte (val ), 0600 )
649
+ err := ioutil .WriteFile (t [1 ], []byte (val ), 0600 )
650
+ if err != nil {
651
+ fmt .Println (fmt .Sprintf ("%s unable to be written to for format %s" , t [1 ], t [0 ]))
652
+ }
650
653
}
651
-
652
654
}
653
655
}
654
656
You can’t perform that action at this time.
0 commit comments