Check for the tgz extension while collecting chart paths

pull/1023/head
Yusuke Kuoka 8 years ago
parent 19a7127ce1
commit c0de9b4ada

@ -98,8 +98,7 @@ func LoadChartRepository(dir, url string) (*ChartRepository, error) {
return nil
}
r.IndexFile = i
} else {
// TODO: check for tgz extension
} else if strings.HasSuffix(f.Name(), ".tgz") {
r.ChartPaths = append(r.ChartPaths, path)
}
}

Loading…
Cancel
Save