bug fixed for download 404 from repo's home page

This commit is contained in:
lunnyxiao 2014-09-24 21:05:09 +08:00
parent bd55b78775
commit 612fdb98df
1 changed files with 1 additions and 0 deletions

View File

@ -356,6 +356,7 @@ func runWeb(*cli.Context) {
r.Get("/commit/:branchname/*", repo.Diff)
r.Get("/releases", repo.Releases)
r.Get("/archive/:branchname/*.*", repo.Download)
r.Get("/archive/*.*", repo.Download)
r.Get("/compare/:before([a-z0-9]+)...:after([a-z0-9]+)", repo.CompareDiff)
}, ignSignIn, middleware.RepoAssignment(true, true))