Skip to content

Commit 06532b7

Browse files
dignifiedquirevojtajina
authored andcommitted
fix(cli): Always pass an instance of fs to processArgs.
Closes #677
1 parent 556eed9 commit 06532b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ exports.process = function() {
203203
default:
204204
describeShared();
205205
if (!options.cmd) {
206-
processArgs(argv, options);
206+
processArgs(argv, options, fs, path);
207207
console.error('Command not specified.');
208208
} else {
209209
console.error('Unknown command "' + options.cmd + '".');

0 commit comments

Comments
 (0)