Commit 584245ea authored by Michelle Noorali's avatar Michelle Noorali Committed by GitHub

Merge pull request #1023 from mumoshu/check-tgz-extension

Check for the tgz extension while collecting chart paths
parents 7800a3c8 c0de9b4a
......@@ -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)
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment