Merge pull request #173 from mozilla/fix-eslint-2

fix(eslint): in this case, yes, we do just ignore the error
This commit is contained in:
John Morrison 2016-06-23 17:16:32 -07:00 коммит произвёл GitHub
Родитель 290d455304 e11093f254
Коммит 8b903ee903
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -22,14 +22,14 @@ var util = require('util')
var args = '{"hash":"%H","subject":"%s","committer date":"%ct"}'
var cmd = util.format('git --no-pager log --format=format:\'%s\' -1', args)
cp.exec(cmd, function (err, stdout) {
cp.exec(cmd, function (err, stdout) { // eslint-disable-line handle-callback-err
var info = {
version: JSON.parse(stdout || '{}')
}
var cmd = 'git config --get remote.origin.url'
cp.exec(cmd, function (err, stdout) {
cp.exec(cmd, function (err, stdout) { // eslint-disable-line handle-callback-err
info.version.source = (stdout && stdout.trim()) || ''
console.log(JSON.stringify(info, null, 2))
console.log(JSON.stringify(info, null, 2)) // eslint-disable-line no-console
})
})