Skip to content

Commit

Permalink
Fix bug where part of the CLI didn’t work :(
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Sep 17, 2016
1 parent b5eb3ad commit 12f5b63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ var cli = meow({
/* Set-up. */
var globs = ['{docs/**/,doc/**/,}*.{' + extensions.join(',') + '}'];

/* istanbul ignore next - Bug in tests. Something hangs, at least. */
/* istanbul ignore else - Bug in tests. Something hangs, at least. */
if (cli.input.length) {
globs = cli.input;
}
Expand Down Expand Up @@ -109,7 +109,7 @@ engine({
rcName: '.alexrc',
packageField: 'alex',
ignoreName: '.alexignore',
plugins: [filter],
plugins: plugins,
frail: true
}, function (err, code, result) {
var out = report(err || result.files, {
Expand Down

0 comments on commit 12f5b63

Please sign in to comment.