woodpecker/vendor/github.com/docker/distribution/reference/helpers.go
2017-03-05 18:57:06 +11:00

12 lines
243 B
Go

package reference
// IsNameOnly returns true if reference only contains a repo name.
func IsNameOnly(ref Named) bool {
if _, ok := ref.(NamedTagged); ok {
return false
}
if _, ok := ref.(Canonical); ok {
return false
}
return true
}