We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51da3c0 commit 1114fa4Copy full SHA for 1114fa4
arduino-ide-extension/scripts/download-ls.js
@@ -4,8 +4,8 @@
4
// - https://downloads.arduino.cc/arduino-language-server/clangd/clangd_${VERSION}_${SUFFIX}
5
6
(() => {
7
- const DEFAULT_ALS_VERSION = '0.5.0';
8
- const DEFAULT_CLANGD_VERSION = 'snapshot_20210124';
+ const DEFAULT_ALS_VERSION = '0.6.0';
+ const DEFAULT_CLANGD_VERSION = '13.0.0';
9
10
const path = require('path');
11
const shell = require('shelljs');
@@ -20,7 +20,7 @@
20
.option('clangd-version', {
21
alias: 'cv',
22
default: DEFAULT_CLANGD_VERSION,
23
- choices: ['snapshot_20210124'],
+ choices: [DEFAULT_CLANGD_VERSION, 'snapshot_20210124'],
24
describe: `The version of 'clangd' to download. Defaults to ${DEFAULT_CLANGD_VERSION}.`,
25
})
26
.option('force-download', {
0 commit comments