mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 13:36:29 +00:00
Prepend username with @
in the default commit message (#17)
This commit is contained in:
parent
10386c5483
commit
47e408d5cd
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ var path = require('path');
|
|||
var spawn = require('child_process').spawn;
|
||||
var _ = require('lodash/fp');
|
||||
|
||||
var commitTemplate = '<%= (newContributor ? "Add" : "Update") %> <%= username %> as a contributor';
|
||||
var commitTemplate = '<%= (newContributor ? "Add" : "Update") %> @<%= username %> as a contributor';
|
||||
|
||||
function getRemoteOriginData(cb) {
|
||||
var output = '';
|
||||
|
|
Loading…
Reference in a new issue