Skip to content

Commit

Permalink
Update the downloaded Python language server nuget package filename.
Browse files Browse the repository at this point in the history
Fixes microsoft#2362

- Coincides with addition to CI/CD pipeline
- CI/CD pipeline copies the latest bits to a static file name
- We need to use a specific name.
- We want the bits to be updatable.
- Until we ship non-beta python language server this will work.
  • Loading branch information
d3r3kk committed Aug 9, 2018
1 parent d35c672 commit 4a64648
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions news/2 Fixes/2362.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update the downloaded Python language server nuget package filename to 'Python-Language-Server-{OSType}.beta.nupkg'.
2 changes: 1 addition & 1 deletion src/client/activation/downloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const StreamZip = require('node-stream-zip');

const downloadUriPrefix = 'https://pvsc.blob.core.windows.net/python-language-server';
const downloadBaseFileName = 'Python-Language-Server';
const downloadVersion = '0.1.18204.3';
const downloadVersion = 'beta';
const downloadFileExtension = '.nupkg';

export const DownloadLinks = {
Expand Down

0 comments on commit 4a64648

Please sign in to comment.