Skip to content

Commit

Permalink
Mv lib/util/cli -> lib/cli/cli
Browse files Browse the repository at this point in the history
  • Loading branch information
arrowrowe committed Oct 4, 2015
1 parent 13a39f8 commit 8f04c82
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/tam.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

var tam = require('../index');
var cli = require('../lib/util/cli');
var cli = require('../lib/cli/cli');
var option = cli.parse();

tam.run(option);
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ tam.run = function (option) {
return;
}
if (option.help) {
var cli = require('./lib/util/cli');
var cli = require('./lib/cli/cli');
console.log(cli.getUsage({
title: title,
description: PACKAGE.description,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/bin-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var expect = require('chai').expect;
var sinon = require('sinon');
var path = require('path');

var cli = require('../lib/util/cli');
var cli = require('../lib/cli/cli');
var tam = require('../index');
var fs = require('fs');

Expand Down

0 comments on commit 8f04c82

Please sign in to comment.