Removing warning from appveyor

This commit is contained in:
Richard Ramos 2018-05-26 13:06:48 -04:00 committed by Jonathan Rainville
parent 3dd4b2ada9
commit a058fbd349

View File

@ -16,8 +16,9 @@ class Compiler {
let pluginCompilers = self.plugins.getPluginsProperty('compilers', 'compilers');
pluginCompilers.forEach(function (compilerObject) {
if(available_compilers[compilerObject.extension] === undefined)
if(available_compilers[compilerObject.extension] === undefined){
available_compilers[compilerObject.extension] = compilerObject.cb;
}
});
let compiledObject = {};