Skip to content

Commit 7bc233c

Browse files
committed
Update commit.go
1 parent 20cd89d commit 7bc233c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cmd/commit.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ func scanRepos(inputDir string, dateFlag string, timeDirection string, outputDir
7070
// Fetch commits
7171
fmt.Printf("[FETCHING COMMITS] %s into %s\n", repoPath, outputFile)
7272
if err := runGitLog(repoPath, dateFlag, timeDirection, outputFile); err != nil {
73-
return err
73+
fmt.Printf("[ERROR FETCHING COMMITS] %s: %v\n", repoPath, err)
74+
continue
7475
}
7576
}
7677
}

0 commit comments

Comments
 (0)