Executing a command, e.g. helm install, that fails and returns a non 0 return value will not make the task fail.
I believe the following code should be added to execCommand in base.ts (don't have permission to send a pull request):
let r = binary.execSync();
if (r.code != 0){
throw r.error
}
Executing a command, e.g. helm install, that fails and returns a non 0 return value will not make the task fail.
I believe the following code should be added to execCommand in base.ts (don't have permission to send a pull request):
let r = binary.execSync();
if (r.code != 0){
throw r.error
}