Sfoglia il codice sorgente

Merge pull request #2004 from kencochrane/master

fix the error message so it is the same as the regex issue #1999
Victor Vieux 11 anni fa
parent
commit
420ba9c85a
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      registry/registry.go

+ 1 - 1
registry/registry.go

@@ -72,7 +72,7 @@ func validateRepositoryName(repositoryName string) error {
 	}
 	}
 	validRepo := regexp.MustCompile(`^([a-z0-9-_.]+)$`)
 	validRepo := regexp.MustCompile(`^([a-z0-9-_.]+)$`)
 	if !validRepo.MatchString(name) {
 	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
 	return nil
 }
 }