Removing warning from appveyor
This commit is contained in:
parent
3dd4b2ada9
commit
a058fbd349
|
@ -16,8 +16,9 @@ class Compiler {
|
||||||
|
|
||||||
let pluginCompilers = self.plugins.getPluginsProperty('compilers', 'compilers');
|
let pluginCompilers = self.plugins.getPluginsProperty('compilers', 'compilers');
|
||||||
pluginCompilers.forEach(function (compilerObject) {
|
pluginCompilers.forEach(function (compilerObject) {
|
||||||
if(available_compilers[compilerObject.extension] === undefined)
|
if(available_compilers[compilerObject.extension] === undefined){
|
||||||
available_compilers[compilerObject.extension] = compilerObject.cb;
|
available_compilers[compilerObject.extension] = compilerObject.cb;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
let compiledObject = {};
|
let compiledObject = {};
|
||||||
|
|
Loading…
Reference in New Issue