mirror of
https://github.com/helm/helm.git
synced 2026-08-04 23:20:49 +00:00
Merge pull request #2255 from sushilkm/issues/2254
Fixes hard-coded linux based file-separator
This commit is contained in:
@@ -56,8 +56,8 @@ func (h Home) Cache() string {
|
||||
|
||||
// CacheIndex returns the path to an index for the given named repository.
|
||||
func (h Home) CacheIndex(name string) string {
|
||||
target := fmt.Sprintf("repository/cache/%s-index.yaml", name)
|
||||
return h.Path(target)
|
||||
target := fmt.Sprintf("%s-index.yaml", name)
|
||||
return h.Path("repository", "cache", target)
|
||||
}
|
||||
|
||||
// Starters returns the path to the Helm starter packs.
|
||||
|
||||
Reference in New Issue
Block a user