sindresorhus / execa

Process execution for humans

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Series of `.pipe()` calls do not propagate failures

ehmicky opened this issue · comments

The following series of pipes:

await execa('failure')
  .pipe(execa('success'))
  .pipe(execa('success'));

Resolves successfully instead of throwing due to the first process failing.