summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--routes/routes.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/routes/routes.go b/routes/routes.go
index 0cd3308..12225ef 100644
--- a/routes/routes.go
+++ b/routes/routes.go
@@ -38,9 +38,8 @@ func (d *deps) Index(w http.ResponseWriter, r *http.Request) {
path := filepath.Join(d.c.Repo.ScanPath, dir.Name())
gr, err := git.Open(path, "")
if err != nil {
- d.Write500(w)
- log.Printf("opening dir %s: %s", path, err)
- return
+ log.Println(err)
+ continue
}
c, err := gr.LastCommit()