Skip to content

Commit

Permalink
Fix config in help
Browse files Browse the repository at this point in the history
  • Loading branch information
Dom Harrington committed May 1, 2018
1 parent b31d461 commit 50294e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/help.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const path = require('path');
const fs = require('fs');
const config = require('config');

exports.category = 'basic';
exports.desc = 'Learn what you can do with this tool';
Expand All @@ -9,7 +10,7 @@ function pad(text) {
return text.padEnd(15);
}

exports.run = function(config) {
exports.run = function() {
console.log('');
console.log(`Usage: ${config.cli} <command> [arguments]`);
const files = fs
Expand Down

0 comments on commit 50294e9

Please sign in to comment.