Skip to content

Commit

Permalink
fix(jsonnet-bundler): default subdir to empty string (#19064)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Nov 24, 2022
1 parent eef8e0a commit 4dc7869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/manager/jsonnet-bundler/extract.ts
Expand Up @@ -52,7 +52,7 @@ function extractDependency(dependency: Dependency): PackageDependency | null {
const depName = join(
gitRemote.host,
gitRemote.pathname.replace(/\.git$/, ''),
dependency.source.git.subdir
dependency.source.git.subdir ?? ''
);

return {
Expand Down

0 comments on commit 4dc7869

Please sign in to comment.