summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cmd/serve.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/serve.go b/cmd/serve.go
index fb90f6b448..b571375257 100644
--- a/cmd/serve.go
+++ b/cmd/serve.go
@@ -139,7 +139,7 @@ func runServ(c *cli.Context) {
}
verb, args := parseCmd(cmd)
- repoPath := strings.Trim(args, "'")
+ repoPath := strings.ToLower(strings.Trim(args, "'"))
rr := strings.SplitN(repoPath, "/", 2)
if len(rr) != 2 {
fail("Invalid repository path", "Invalid repository path: %v", args)