Skip to content

Commit 244c180

Browse files
committed
[auto] run release preconditions
1 parent eb295c3 commit 244c180

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

automation/shellUtils.ts

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

81-
82-
8381
export async function $input(message: string): Promise<string> {
8482
console.write(`${message} `);
8583
const stdin = Bun.stdin.stream();
8684
const reader = stdin.getReader();
8785
const chunk = await reader.read();
88-
reader.releaseLock()
86+
reader.releaseLock();
8987
const text = Buffer.from(chunk.value ?? '').toString();
9088
return text.trim();
9189
}

0 commit comments

Comments
 (0)