Skip to content

Commit

Permalink
refactor lib: require gitlog module from lib
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlinse committed Jun 7, 2015
1 parent c1e7807 commit f8b03a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/git-contributors
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

var fs = require('fs'),
path = require('path'),
git = require('./gitlog'),
git = require('../lib/gitlog'),
_ = require('lodash');
var Q = require('q');

Expand Down
2 changes: 1 addition & 1 deletion fixtures/binary-footer
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if (!module.parent) {

var version = JSON.parse(fs.readFileSync(pkg, 'utf-8')).version;

program = _.merge(require('./_cli').parse(process.argv, version), program);
program = _.merge(require('../lib/_cli').parse(process.argv, version), program);
program.cwd = _.first(program.args);

var success = function(result) {
Expand Down
2 changes: 1 addition & 1 deletion lib/git-contributors.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

var fs = require('fs'),
path = require('path'),
git = require('./gitlog'),
git = require('../lib/gitlog'),
_ = require('lodash');
var Q = require('q');

Expand Down

0 comments on commit f8b03a1

Please sign in to comment.