Skip to content

Commit 1504224

Browse files
committed
fix release script
1 parent 71b76d8 commit 1504224

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
@@ -21,7 +21,7 @@ export async function $(
2121

2222
const proc = exec(cmd);
2323
const stdout = await new Response(proc.stdout).text();
24-
const stderr = await new Response(proc.stdout).text();
24+
const stderr = await new Response(proc.stderr).text();
2525

2626
if (verboseness === Verboseness.VERBOSE) {
2727
if (stdout !== '') {

0 commit comments

Comments
 (0)