Merge pull request #2004 from kencochrane/master

fix the error message so it is the same as the regex issue #1999
This commit is contained in:
Victor Vieux 2013-09-25 09:46:15 -07:00
commit 3aedd7294a

View file

@ -72,7 +72,7 @@ func validateRepositoryName(repositoryName string) error {
}
validRepo := regexp.MustCompile(`^([a-z0-9-_.]+)$`)
if !validRepo.MatchString(name) {
return fmt.Errorf("Invalid repository name (%s), only [a-zA-Z0-9-_.] are allowed", name)
return fmt.Errorf("Invalid repository name (%s), only [a-z0-9-_.] are allowed", name)
}
return nil
}