fix(clustertool): revert dynamic trailing slash detection for now and fix jetstack

This commit is contained in:
Kjeld Schouten
2025-04-08 08:48:48 +02:00
parent eecb634455
commit 35a8ce339d
2 changed files with 2 additions and 7 deletions
@@ -8,4 +8,4 @@ metadata:
spec:
type: oci
interval: 2h
url: oci://quay.io/jetstack/charts/
url: oci://quay.io/jetstack/charts
+1 -6
View File
@@ -99,12 +99,7 @@ func HelmPull(repo string, name string, version string, dest string, silent bool
updateHelmRepo(repoName, repo, silent)
repo = repoName
} else {
link := repo
if !strings.HasSuffix(repo, "/") {
link += "/"
}
link += name
client.RepoURL = ""
link = repo + "/" + name
client.RepoURL = ""
}