Skip to content

Commit

Permalink
Another variable bites the dust
Browse files Browse the repository at this point in the history
Fixes #5920
  • Loading branch information
ycombinator authored and epixa committed Jan 16, 2016
1 parent ff8f18d commit 16fe5ab
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/cli/plugin/plugin_lister.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
const fs = require('fs');

export function list(settings, logger) {
const files = fs.readdirSync(settings.pluginDir);
files
fs.readdirSync(settings.pluginDir)
.forEach(function (pluginFile) {
logger.log(pluginFile);
});
Expand Down

0 comments on commit 16fe5ab

Please sign in to comment.