Skip to content
Snippets Groups Projects
Commit 0c6d183a authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix(kustomize): skip strings

parent 9720ca8d
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,7 @@ export function parseKustomize(content: string): Kustomize | null { ...@@ -132,7 +132,7 @@ export function parseKustomize(content: string): Kustomize | null {
return null; return null;
} }
if (!pkg) { if (!pkg || is.string(pkg)) {
return null; return null;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment