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 76917ab commit 551da9bCopy full SHA for 551da9b
lib/sgcPrompt.js
@@ -42,7 +42,7 @@ const sgcPrompt = () => {
42
}];
43
44
inquirer.prompt(questions).then((answers) => {
45
- const message = answers.moreInfo ? `"${answers.editor}"` : `"${answers.type} ${answers.description}"`;
+ const message = answers.moreInfo ? `${answers.editor}` : `${answers.type} ${answers.description}`;
46
47
execa('git', ['commit', '-m', message])
48
.then(result => console.log(result.stdout))
0 commit comments