Lint: do not ignore external/importL10n
as it is one of our components
This commit is contained in:
parent
c719762099
commit
978b214c92
@ -6,7 +6,6 @@ examples/
|
|||||||
external/bcmaps/
|
external/bcmaps/
|
||||||
external/webL10n/
|
external/webL10n/
|
||||||
external/cmapscompress/
|
external/cmapscompress/
|
||||||
external/importL10n/
|
|
||||||
external/builder/fixtures_esprima/
|
external/builder/fixtures_esprima/
|
||||||
test/tmp/
|
test/tmp/
|
||||||
test/features/
|
test/features/
|
||||||
|
4
external/importL10n/locales.js
vendored
4
external/importL10n/locales.js
vendored
@ -66,7 +66,7 @@ function downloadLanguageFiles(root, langCode, callback) {
|
|||||||
var request = https.get(url, function(response) {
|
var request = https.get(url, function(response) {
|
||||||
var content = '';
|
var content = '';
|
||||||
response.setEncoding('utf8');
|
response.setEncoding('utf8');
|
||||||
response.on("data", function(chunk) {
|
response.on('data', function(chunk) {
|
||||||
content += chunk;
|
content += chunk;
|
||||||
});
|
});
|
||||||
response.on('end', function() {
|
response.on('end', function() {
|
||||||
@ -75,7 +75,7 @@ function downloadLanguageFiles(root, langCode, callback) {
|
|||||||
if (downloadsLeft === 0) {
|
if (downloadsLeft === 0) {
|
||||||
callback();
|
callback();
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user