From e7d36c9590bfdc2e57cbbecce87729f51ac3b35f Mon Sep 17 00:00:00 2001 From: Sam Alba Date: Mon, 8 Jul 2013 17:22:41 -0700 Subject: [PATCH] It is now possible to include a ":" in a local repository name (it will not be the case for a remote name). This adds support for full qualified repository name in order to support private registry server --- tags.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/tags.go b/tags.go index d1eb36aa72..f7307ed424 100644 --- a/tags.go +++ b/tags.go @@ -221,9 +221,6 @@ func validateRepoName(name string) error { if name == "" { return fmt.Errorf("Repository name can't be empty") } - if strings.Contains(name, ":") { - return fmt.Errorf("Illegal repository name: %s", name) - } return nil }