Skip to content

Commit

Permalink
fix removal of unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Nov 8, 2016
1 parent 937bdff commit 05b8c74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli_plugin/install/pack.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function listPackages(settings) {
.map(file => file.replace(/\\/g, '/'))
.map(file => file.match(regExp))
.compact()
.map(([ file, folder ]) => ({ file, folder }))
.map(([ file, , folder ]) => ({ file, folder }))
.uniq()
.value();
}
Expand Down

0 comments on commit 05b8c74

Please sign in to comment.