Skip to content

Commit

Permalink
linter fix (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBuchholz committed May 7, 2018
1 parent ec1f0bd commit e913ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grunt/concurrent.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Object.keys(configuration.files.flavors).forEach(flavor => {
.filter(name => 0 === flavorHosts.length || -1 !== flavorHosts.indexOf(name))
.reduce((list, name) => list.concat(hosts[name]), [])
.map(name => `exec:test${name}`);
module.exports[`flavor@${flavor}`] = tasks.map(name => `${name}Flavor:${flavor}`)
module.exports[`flavor@${flavor}`] = tasks.map(name => `${name}Flavor:${flavor}`);
});

configuration.files.legacyTest.forEach(versionFile => {
Expand Down

0 comments on commit e913ffa

Please sign in to comment.