Skip to content

Commit 41463b1

Browse files
committed
Add pt-BR locale only in non-stable build quality.
1 parent eeb076c commit 41463b1

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

build/gulpfile.vscode.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,10 @@ gulp.task('electron', ['clean-electron'], getElectron(process.arch));
158158
gulp.task('electron-ia32', ['clean-electron'], getElectron('ia32'));
159159
gulp.task('electron-x64', ['clean-electron'], getElectron('x64'));
160160

161-
const languages = ['chs', 'cht', 'jpn', 'kor', 'deu', 'fra', 'esn', 'rus', 'ita', 'ptb'];
161+
var languages = ['chs', 'cht', 'jpn', 'kor', 'deu', 'fra', 'esn', 'rus', 'ita'];
162+
if (product.quality !== 'stable') {
163+
languages.concat(['ptb']);
164+
}
162165

163166
/**
164167
* Compute checksums for some files.

0 commit comments

Comments
 (0)