From 231ffd7df3a55ae53aa279ecd7fd54971e57ec33 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Tue, 19 Mar 2019 09:39:57 +0100 Subject: [PATCH] fix license --- build/gulpfile.vscode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index 21287193816..9e4ee6a6e09 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -308,7 +308,7 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op const productJsonStream = gulp.src(['product.json'], { base: '.' }) .pipe(json(productJsonUpdate)); - const license = gulp.src(['LICENSES.chromium.html', product.licenseFileName, 'ThirdPartyNotices.txt'], { base: '.', allowEmpty: true }); + const license = gulp.src(['LICENSES.chromium.html', product.licenseFileName, 'ThirdPartyNotices.txt', 'licenses/**'], { base: '.', allowEmpty: true }); // TODO the API should be copied to `out` during compile, not here const api = gulp.src('src/vs/vscode.d.ts').pipe(rename('out/vs/vscode.d.ts'));