Skip to content

Commit

Permalink
urljoin on package name as well
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipAbed committed Jul 17, 2024
1 parent 5d773d2 commit 1d6de93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/manager/helmfile/extract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export async function extractPackageFile(

if (isOCIRegistry(dep.chart)) {
res.datasource = DockerDatasource.id;
res.packageName = repoName + '/' + depName;
res.packageName = urlJoin(repoName, depName);
} else if (registryData[repoName]?.oci) {
res.datasource = DockerDatasource.id;
const alias = registryData[repoName]?.url;
Expand Down

0 comments on commit 1d6de93

Please sign in to comment.