Skip to content

Commit 8ba23cc

Browse files
fix(pkg/sync): 🔧 log error details without crashing
1 parent 58acbe4 commit 8ba23cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/sync/sync.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func CloneOrUpdateRepo(repoOwner, repoName string, config config.Config) {
7878
output, err := command.CombinedOutput()
7979
logger.Debugf("Output: %s\n", output)
8080
if err != nil {
81-
logger.Fatalf("Error updating repo %s: %v\n", repoFullName, err)
81+
logger.Debugf("Error updating repo %s: %v\n", repoFullName, err)
8282
} else {
8383
logger.Info("Updated repo: ", repoFullName)
8484
}

0 commit comments

Comments
 (0)