in src/helm-util.ts [58:69]
export function findHelm(rootFolder: string): string {
fs.chmodSync(rootFolder, '777')
const filelist: string[] = []
walkSync(rootFolder, filelist, helmToolName + getExecutableExtension())
if (!filelist) {
throw new Error(
util.format('Helm executable not found in path ', rootFolder)
)
} else {
return filelist[0]
}
}