From ea88643838c8e3af545fc986d37167d5adafa534 Mon Sep 17 00:00:00 2001 From: Galarius Date: Thu, 15 Aug 2024 22:15:28 +0300 Subject: [PATCH] Add notes about licenses --- DEV.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/DEV.md b/DEV.md index e06d8b5..d690c5f 100644 --- a/DEV.md +++ b/DEV.md @@ -105,6 +105,16 @@ rm opencl-language-server-win32-x86_64.zip popd ``` +### Licenses + +```shell +pushd ./bin +curl --remote-name-all --location $( curl -s https://api.github.com/repos/Galarius/opencl-language-server/releases/latest | grep "licenses.tar.gz" | tail -n -1 | cut -d : -f 2,3 | tr -d \" ) +tar -xzvf licenses.tar.gz +rm licenses.tar.gz +popd +``` + ## Publishing the extension to the Visual Studio Marketplace 1. Install `vsce`: `npm install -g @vscode/vsce`.