Estou tentando executar no node o child process e está ocorrendo erro.
executeOnLinux(){
exec('./agent/teste.sh', (err, stdout, stderr) => {
if (err) {
console.error(err);
return;
}
console.log(stdout);
});
}
Mensagem de Erro
exec error: Error: Command failed: ./agent/teste.sh
Por favor, Desde já muito obrigado .