Skip to content

Commit

Permalink
fix(cli): Always pass an instance of fs to processArgs.
Browse files Browse the repository at this point in the history
Closes #677
  • Loading branch information
dignifiedquire authored and vojtajina committed Aug 6, 2013
1 parent 556eed9 commit 06532b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ exports.process = function() {
default:
describeShared();
if (!options.cmd) {
processArgs(argv, options);
processArgs(argv, options, fs, path);
console.error('Command not specified.');
} else {
console.error('Unknown command "' + options.cmd + '".');
Expand Down

0 comments on commit 06532b7

Please sign in to comment.