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 56a70a9 commit 6699ae7Copy full SHA for 6699ae7
automation/shellUtils.ts
@@ -18,7 +18,7 @@ export async function $(cmd: string, verboseness: Verboseness = Verboseness.NORM
18
19
const proc = exec(cmd);
20
const stdout = await new Response(proc.stdout).text();
21
- const stderr = await new Response(proc.stdout).text();
+ const stderr = await new Response(proc.stderr).text();
22
23
if (verboseness === Verboseness.VERBOSE) {
24
if (stdout !== '') {
0 commit comments