We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38cdbc1 commit 31d91fbCopy full SHA for 31d91fb
utils/spawn.ts
@@ -23,7 +23,7 @@ export default (
23
24
if (result.status !== 0) {
25
throw new Error(
26
- `The command '${command}' returned non-zero exit status ${result.status}: ${result.stderr}`,
+ `The command '${command}' returned non-zero exit status ${result.status}: ${result.stderr || result.stdout}`,
27
);
28
}
29
0 commit comments