Fixed adding languages only to non-stable build.

This commit is contained in:
Michel Kaporin
2017-06-01 15:13:31 +02:00
parent 724f31f5bc
commit 45e33456d6
3 changed files with 3 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ const BUNDLED_FILE_HEADER = [
].join('\n');
var languages = ['chs', 'cht', 'jpn', 'kor', 'deu', 'fra', 'esn', 'rus', 'ita'];
if (product.quality !== 'stable') {
if (process.env.VSCODE_QUALITY !== 'stable') {
languages = languages.concat(['ptb']); // Add languages requested by the community to non-stable builds
}