Commit 145d5e0c authored by Adam Reese's avatar Adam Reese

(fix): broken registry api

parent 9763a893
...@@ -162,8 +162,8 @@ func getGitRegistry(reg string) (registry.Registry, error) { ...@@ -162,8 +162,8 @@ func getGitRegistry(reg string) (registry.Registry, error) {
} }
if s[0] == "helm" { if s[0] == "helm" {
return registry.NewGithubPackageRegistry(s[0], s[1]), nil return registry.NewGithubPackageRegistry(s[0], s[1], nil), nil
} else { } else {
return registry.NewGithubRegistry(s[0], s[1], path), nil return registry.NewGithubRegistry(s[0], s[1], path, nil), nil
} }
} }
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