Skip to content

Commit bc94a26

Browse files
committed
Repo: Simplify tag commit message to pass guidelines
This is also more consistent with repos where we you 'npm tag', which also only uses the version number as the commit message. Fixes gh-33
1 parent ced2807 commit bc94a26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/repo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Release.define({
184184
Release.chdir( Release.dir.repo );
185185
console.log( "Committing release artifacts..." );
186186
Release.git( "add -f " + paths.join( " " ), "Error adding release artifacts to git." );
187-
Release.git( "commit -m 'Tagging the " + Release.newVersion + " release.'",
187+
Release.git( "commit -m '" + Release.newVersion + "'",
188188
"Error committing release changes." );
189189
console.log();
190190

0 commit comments

Comments
 (0)