Skip to content

Commit c9359a0

Browse files
authored
🐞 fix: update commit prompt question option to uppercase-N
1 parent a49f767 commit c9359a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/utils/commit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ async function askForCommitMessage() {
1111
});
1212

1313
if (prompt) {
14-
rl.question(`Suggested commit message: ${prompt}\nDo you want to proceed? (y/n) `, (answer) => {
14+
rl.question(`Suggested commit message: ${prompt}\nDo you want to proceed? (y/N) `, (answer) => {
1515
if (answer.toLowerCase() === "y") {
1616
execa("git", ["commit", "-m", prompt])
1717
.then(() => {

0 commit comments

Comments
 (0)