diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index 179931d290d2fe7142ee7e4107f13ae1e0420787..21287193816543c50bf13bc7d79cfe208972bad1 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', 'LICENSE.txt', 'ThirdPartyNotices.txt', 'licenses/**'], { base: '.', allowEmpty: true }); + const license = gulp.src(['LICENSES.chromium.html', product.licenseFileName, 'ThirdPartyNotices.txt'], { 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')); diff --git a/package.json b/package.json index 016dc98964629802dfeb71ad6bcf493546ab9745..16f38bd61e3626e0de4a505a4856399775f2adda 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "code-oss-dev", "version": "1.33.0", - "distro": "3dfd693162a1a4c42af4ccd471c49c930d45785e", + "distro": "44b1ed5c65855e3a917543d93f5916a822882a2a", "author": { "name": "Microsoft Corporation" }, @@ -151,4 +151,4 @@ "windows-mutex": "0.2.1", "windows-process-tree": "0.2.3" } -} +} \ No newline at end of file diff --git a/product.json b/product.json index 3a32b3480e97547afb212415969de90b15dffaf3..4103352af85f353307fc71f5d47da1b22c9328d7 100644 --- a/product.json +++ b/product.json @@ -17,9 +17,10 @@ "win32ShellNameShort": "C&ode - OSS", "darwinBundleIdentifier": "com.visualstudio.code.oss", "linuxIconName": "com.visualstudio.code.oss", + "licenseFileName": "LICENSE.txt", "reportIssueUrl": "https://github.com/Microsoft/vscode/issues/new", "urlProtocol": "code-oss", "extensionAllowedProposedApi": [ "ms-vscode.references-view" ] -} +} \ No newline at end of file