Do not include built/local/enu when producing LKG (#32723)

This commit is contained in:
Ron Buckton 2019-08-05 16:19:38 -07:00 committed by GitHub
parent 33a6509751
commit 4df2fc663c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 7665 deletions

File diff suppressed because it is too large Load diff

View file

@ -30,7 +30,7 @@ async function copyLocalizedDiagnostics() {
for (const d of dir) {
const fileName = path.join(source, d);
if (fs.statSync(fileName).isDirectory()) {
if (d === 'tslint') continue;
if (d === 'tslint' || d === 'enu') continue;
await fs.copy(fileName, path.join(dest, d));
}
}