We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d00067c commit bc4d5e5Copy full SHA for bc4d5e5
cmd/src-fingerprint/main.go
@@ -260,7 +260,7 @@ loop:
260
}
261
262
case <-ticker:
263
- if totalRepo == 0 {
+ if totalRepo == 0 || gitFilesCount == 0 {
264
continue
265
266
@@ -269,7 +269,8 @@ loop:
269
270
271
272
- log.Infof("Final stats:\n%v/%v repos: %v files analyzed\n",
+ log.Infoln("Final stats:")
273
+ log.Infof("%v/%v repos: %v files analyzed\n",
274
doneRepo, totalRepo, gitFilesCount)
275
log.Infof("Dumping to output %v\n", c.String("output"))
276
0 commit comments