Prepend username with @ in the default commit message (#17)

This commit is contained in:
Jeroen Engels 2016-05-11 20:38:20 +02:00
parent 10386c5483
commit 47e408d5cd

View file

@ -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 = '';