Skip to content

Commit 551da9b

Browse files
committed
🐛 Fix: remove strings in commit message
1 parent 76917ab commit 551da9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/sgcPrompt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const sgcPrompt = () => {
4242
}];
4343

4444
inquirer.prompt(questions).then((answers) => {
45-
const message = answers.moreInfo ? `"${answers.editor}"` : `"${answers.type} ${answers.description}"`;
45+
const message = answers.moreInfo ? `${answers.editor}` : `${answers.type} ${answers.description}`;
4646

4747
execa('git', ['commit', '-m', message])
4848
.then(result => console.log(result.stdout))

0 commit comments

Comments
 (0)