Compare commits

...

1 Commits

Author SHA1 Message Date
Patrick Devine
9818af9763 fix extended tag names 2023-07-21 19:07:40 -07:00

View File

@ -45,7 +45,7 @@ func ParseModelPath(name string) ModelPath {
return ModelPath{}
}
colonParts := strings.Split(name, ":")
colonParts := strings.Split(slashParts[len(slashParts)-1], ":")
if len(colonParts) == 2 {
tag = colonParts[1]
} else {