feat: Use current user as commit author

This commit is contained in:
NGPixel
2017-04-29 11:53:44 -04:00
parent 1765c9c652
commit 8f3a6ed9f3
2 changed files with 13 additions and 2 deletions

View File

@@ -7,6 +7,8 @@ const fs = Promise.promisifyAll(require('fs'))
const _ = require('lodash')
const URL = require('url')
const securityHelper = require('../helpers/security')
/**
* Git Model
*/
@@ -207,7 +209,8 @@ module.exports = {
commitMsg = (isTracked) ? 'Updated ' + gitFilePath : 'Added ' + gitFilePath
return self._git.add(gitFilePath)
}).then(() => {
return self._git.exec('commit', ['-m', commitMsg, '--author="' + author.name + ' <' + author.email + '>"']).catch((err) => {
let commitUsr = securityHelper.sanitizeCommitUser(author)
return self._git.exec('commit', ['-m', commitMsg, '--author="' + commitUsr.name + ' <' + commitUsr.email + '>"']).catch((err) => {
if (_.includes(err.stdout, 'nothing to commit')) { return true }
})
})