Skip to content

Commit eb295c3

Browse files
committed
fix release script
1 parent fed2cc4 commit eb295c3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

automation/shellUtils.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,14 @@ export async function $seq(
7878
onSuccess();
7979
}
8080

81+
82+
8183
export async function $input(message: string): Promise<string> {
8284
console.write(`${message} `);
8385
const stdin = Bun.stdin.stream();
8486
const reader = stdin.getReader();
8587
const chunk = await reader.read();
88+
reader.releaseLock()
8689
const text = Buffer.from(chunk.value ?? '').toString();
8790
return text.trim();
8891
}

0 commit comments

Comments
 (0)