We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfd4d63 commit ad07945Copy full SHA for ad07945
scanner/main.go
@@ -132,17 +132,17 @@ func main() {
132
case ".jar", ".war", ".ear":
133
f, err := os.Open(path)
134
if err != nil {
135
- fmt.Fprintf(errFile, "can't open %s: %v", path, err)
+ fmt.Fprintf(errFile, "can't open %s: %v\n", path, err)
136
return nil
137
}
138
defer f.Close()
139
sz, err := f.Seek(0, os.SEEK_END)
140
141
- fmt.Fprintf(errFile, "can't seek in %s: %v", path, err)
+ fmt.Fprintf(errFile, "can't seek in %s: %v\n", path, err)
142
143
144
if _, err := f.Seek(0, os.SEEK_END); err != nil {
145
146
147
148
handleJar(path, f, sz)
0 commit comments