fix git clone error when repo has upper case name

This commit is contained in:
codeskyblue 2014-12-11 15:57:32 +08:00
parent cf7ebfbdc8
commit db6c0ebf76
1 changed files with 1 additions and 0 deletions

View File

@ -227,6 +227,7 @@ var routes = []route{
func HttpBackend(config *Config) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
for _, route := range routes {
r.URL.Path = strings.ToLower(r.URL.Path) // blue: In case some repo name has upper case name
if m := route.cr.FindStringSubmatch(r.URL.Path); m != nil {
if route.method != r.Method {
renderMethodNotAllowed(w, r)