Skip to content

Commit bbb5a89

Browse files
committed
Default to yes
1 parent 7ef1b4b commit bbb5a89

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/create-release.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const releaseAnswer = await question(
5757
choices: ["y", "n", "Y", "N", ""],
5858
}
5959
);
60-
if (!["y", "", "yes"].includes(releaseAnswer.toLocaleLowerCase())) {
60+
if (["n", "", "no"].includes(releaseAnswer.toLocaleLowerCase())) {
6161
process.exit(1);
6262
}
6363

0 commit comments

Comments
 (0)