Skip to content

Commit 9d95c3a

Browse files
committed
fix grunt git task commit message
1 parent 56fbe04 commit 9d95c3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = function (grunt) {
1515

1616
grunt.registerTask('git', function (version) {
1717
new ShellTask('git add -A')
18-
.then('git commit -m "Release v' + version + '"')
18+
.then('git commit -m Release-v' + version)
1919
.then('git tag v' + version)
2020
.then('git push')
2121
.then('git push origin v' + version)

0 commit comments

Comments
 (0)