mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
Increase the style points of our filtering
Sorry, I had to do this
This commit is contained in:
2
app.js
2
app.js
@@ -467,7 +467,7 @@ function findCompilers() {
|
||||
return compilerPropsL(langId, "group." + groupName + "." + propName, parentProps(langId, propName, def));
|
||||
};
|
||||
|
||||
const compilerExes = props(langId, 'compilers', '').split(":").filter(x=>x);
|
||||
const compilerExes = props(langId, 'compilers', '').split(":").filter(_.identity);
|
||||
logger.debug("Processing compilers from group " + groupName);
|
||||
return Promise.all(compilerExes.map(function (compiler) {
|
||||
return recurseGetCompilers(langId, compiler, props);
|
||||
|
||||
Reference in New Issue
Block a user