case sensitive filepaths (#4366)

This commit is contained in:
Michael Yang
2024-05-11 14:12:36 -07:00
committed by GitHub
parent c60a086635
commit ec14f6ceda
2 changed files with 5 additions and 7 deletions

View File

@@ -291,11 +291,9 @@ func (n Name) Filepath() string {
panic("illegal attempt to get filepath of invalid name")
}
return filepath.Join(
strings.ToLower(filepath.Join(
n.Host,
n.Namespace,
n.Model,
)),
n.Host,
n.Namespace,
n.Model,
n.Tag,
)
}