1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

fix(doc): update example for sub processes (#9798)

This commit is contained in:
Makuza Mugabo Verite 2021-03-16 13:05:04 +02:00 committed by GitHub
parent 506b321d47
commit bd961c3bc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,11 +70,13 @@ const p = Deno.run({
const { code } = await p.status(); const { code } = await p.status();
// Reading the outputs closes their pipes
const rawOutput = await p.output();
const rawError = await p.stderrOutput();
if (code === 0) { if (code === 0) {
const rawOutput = await p.output();
await Deno.stdout.write(rawOutput); await Deno.stdout.write(rawOutput);
} else { } else {
const rawError = await p.stderrOutput();
const errorString = new TextDecoder().decode(rawError); const errorString = new TextDecoder().decode(rawError);
console.log(errorString); console.log(errorString);
} }