Skip to content

Commit

Permalink
fix(kustomize): skip strings
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Jan 14, 2023
1 parent 9720ca8 commit 0c6d183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/manager/kustomize/extract.ts
Expand Up @@ -132,7 +132,7 @@ export function parseKustomize(content: string): Kustomize | null {
return null;
}

if (!pkg) {
if (!pkg || is.string(pkg)) {
return null;
}

Expand Down

0 comments on commit 0c6d183

Please sign in to comment.