Skip to content

Commit 3cc53a9

Browse files
authored
Update client.go
1 parent 6c457b8 commit 3cc53a9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

client.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,11 @@ func (c *HelmClient) UpdateChartRepos() error {
206206
}
207207

208208
chartRepo.CachePath = c.Settings.RepositoryCache
209-
_, err = chartRepo.DownloadIndexFile()
210-
if err != nil {
211-
return err
209+
if !registry.IsOCI(entry.URL) {
210+
_, err = chartRepo.DownloadIndexFile()
211+
if err != nil {
212+
return err
213+
}
212214
}
213215

214216
c.storage.Update(entry)

0 commit comments

Comments
 (0)