We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71b76d8 commit 1504224Copy full SHA for 1504224
automation/shellUtils.ts
@@ -21,7 +21,7 @@ export async function $(
21
22
const proc = exec(cmd);
23
const stdout = await new Response(proc.stdout).text();
24
- const stderr = await new Response(proc.stdout).text();
+ const stderr = await new Response(proc.stderr).text();
25
26
if (verboseness === Verboseness.VERBOSE) {
27
if (stdout !== '') {
0 commit comments