Compare commits

..

1 Commits

Author SHA1 Message Date
Patrick Devine
1758d36563 get the proper path for blobs to delete 2023-07-21 17:13:25 -07:00

View File

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