Skip to content

Commit

Permalink
fix: isHelmChartFolder
Browse files Browse the repository at this point in the history
  • Loading branch information
devcatalin committed Feb 3, 2022
1 parent d9cd2f1 commit edc21ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redux/services/helm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function getHelmValuesFile(fileEntry: FileEntry, helmValuesMap: HelmValue
*/

export function isHelmChartFolder(files: string[]) {
return files.indexOf('Chart.yaml') !== -1 && files.indexOf('values.yaml') !== -1;
return files.indexOf('Chart.yaml') !== -1;
}

/**
Expand Down

0 comments on commit edc21ef

Please sign in to comment.