diff --git a/ci/build/build-release.sh b/ci/build/build-release.sh index e876f1268..07a879c28 100755 --- a/ci/build/build-release.sh +++ b/ci/build/build-release.sh @@ -24,7 +24,7 @@ main() { bundle_vscode rsync ./docs/README.md "$RELEASE_PATH" - rsync LICENSE.txt "$RELEASE_PATH" + rsync LICENSE "$RELEASE_PATH" rsync ./lib/vscode/ThirdPartyNotices.txt "$RELEASE_PATH" } @@ -113,7 +113,7 @@ bundle_vscode() { "applicationName": "code-server", "dataFolderName": ".code-server", "win32MutexName": "codeserver", - "licenseUrl": "https://github.com/coder/code-server/blob/main/LICENSE.txt", + "licenseUrl": "https://github.com/coder/code-server/blob/main/LICENSE", "win32DirName": "code-server", "win32NameVersion": "code-server", "win32AppUserModelId": "coder.code-server", diff --git a/patches/display-language.diff b/patches/display-language.diff index 6bfc0c75d..5b540e583 100644 --- a/patches/display-language.diff +++ b/patches/display-language.diff @@ -222,7 +222,7 @@ Index: code-server/lib/vscode/src/vs/workbench/services/localizations/browser/lo @@ -0,0 +1,28 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Coder Technologies. All rights reserved. -+ * Licensed under the MIT License. See License.txt in the project root for license information. ++ * Licensed under the MIT License. See LICENSE in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { ProxyChannel } from 'vs/base/parts/ipc/common/ipc'; diff --git a/patches/store-socket.diff b/patches/store-socket.diff index 2bc60652c..2f1b02428 100644 --- a/patches/store-socket.diff +++ b/patches/store-socket.diff @@ -9,7 +9,7 @@ Index: code-server/lib/vscode/src/vs/workbench/api/node/extHostExtensionService. +++ code-server/lib/vscode/src/vs/workbench/api/node/extHostExtensionService.ts @@ -2,7 +2,9 @@ * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Licensed under the MIT License. See LICENSE in the project root for license information. *--------------------------------------------------------------------------------------------*/ - +import { promises as fs } from 'fs';