convert missing name

This commit is contained in:
Unknwon 2015-11-09 11:39:03 -05:00
parent 647688bd06
commit 2db785b3ed
1 changed files with 1 additions and 1 deletions

View File

@ -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)