Compare commits

...

1 Commits

Author SHA1 Message Date
def0553167 Remove unnecessary condition
All checks were successful
ci/woodpecker/push/build/1 Pipeline was successful
ci/woodpecker/push/build/2 Pipeline was successful
ci/woodpecker/push/manifest Pipeline was successful
2025-02-15 19:07:16 -08:00

View File

@ -97,7 +97,7 @@ func main() {
if err == nil {
// Add the index store to the combined store for the repo
cs.Add(s)
} else if err != nil {
} else {
log.Error("Error opening database", slog.Any("error", err))
os.Exit(1)
}