Skip to content

Commit

Permalink
fix: unescape commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Jan 28, 2018
1 parent a4550b7 commit 86c4556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release_example.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = (_, options) => {
sh.exec(`create-dxcli ${type} --force --defaults ${options}`)
sh.exec('git add -A')
try {
execa.sync('git', ['commit', '-m', `"${releaseType === 'patch' ? 'fix' : 'feat'}: create-dxcli v${version}"\n\n${notes}`], {stdio: 'inherit'})
execa.sync('git', ['commit', '-m', `${releaseType === 'patch' ? 'fix' : 'feat'}: create-dxcli v${version}\n\n${notes}`], {stdio: 'inherit'})
sh.exec('git push')
} catch (err) {
console.error(err)
Expand Down

0 comments on commit 86c4556

Please sign in to comment.