We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20cd89d commit 7bc233cCopy full SHA for 7bc233c
1 file changed
cmd/commit.go
@@ -70,7 +70,8 @@ func scanRepos(inputDir string, dateFlag string, timeDirection string, outputDir
70
// Fetch commits
71
fmt.Printf("[FETCHING COMMITS] %s into %s\n", repoPath, outputFile)
72
if err := runGitLog(repoPath, dateFlag, timeDirection, outputFile); err != nil {
73
- return err
+ fmt.Printf("[ERROR FETCHING COMMITS] %s: %v\n", repoPath, err)
74
+ continue
75
}
76
77
0 commit comments