Skip to content

Commit

Permalink
fix grunt git task commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Dec 24, 2013
1 parent 56fbe04 commit 9d95c3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = function (grunt) {

grunt.registerTask('git', function (version) {
new ShellTask('git add -A')
.then('git commit -m "Release v' + version + '"')
.then('git commit -m Release-v' + version)
.then('git tag v' + version)
.then('git push')
.then('git push origin v' + version)
Expand Down

0 comments on commit 9d95c3a

Please sign in to comment.