We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a49f767 commit c9359a0Copy full SHA for c9359a0
source/utils/commit.js
@@ -11,7 +11,7 @@ async function askForCommitMessage() {
11
});
12
13
if (prompt) {
14
- rl.question(`Suggested commit message: ${prompt}\nDo you want to proceed? (y/n) `, (answer) => {
+ rl.question(`Suggested commit message: ${prompt}\nDo you want to proceed? (y/N) `, (answer) => {
15
if (answer.toLowerCase() === "y") {
16
execa("git", ["commit", "-m", prompt])
17
.then(() => {
0 commit comments