fix grunt git task commit message

This commit is contained in:
Evan You 2013-12-23 20:33:44 -05:00
parent 56fbe047ff
commit 9d95c3ac23
1 changed files with 1 additions and 1 deletions

View File

@ -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)