ソースを参照

fix grunt git task commit message

Evan You 12 年 前
コミット
9d95c3ac23
1 ファイル変更1 行追加1 行削除
  1. 1 1
      tasks/release.js

+ 1 - 1
tasks/release.js

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