Skip to content

Commit 6699ae7

Browse files
committed
fix release script
1 parent 56a70a9 commit 6699ae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

automation/shellUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function $(cmd: string, verboseness: Verboseness = Verboseness.NORM
1818

1919
const proc = exec(cmd);
2020
const stdout = await new Response(proc.stdout).text();
21-
const stderr = await new Response(proc.stdout).text();
21+
const stderr = await new Response(proc.stderr).text();
2222

2323
if (verboseness === Verboseness.VERBOSE) {
2424
if (stdout !== '') {

0 commit comments

Comments
 (0)