Commit c0de9b4a authored by Yusuke Kuoka's avatar Yusuke Kuoka

Check for the tgz extension while collecting chart paths

parent 19a7127c
......@@ -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