We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 785e00b commit 0cf2696Copy full SHA for 0cf2696
lsp-sonarlint.el
@@ -48,7 +48,10 @@
48
(format "https://github.com/SonarSource/sonarlint-vscode/releases/download/4.6.0%%2B76435/sonarlint-vscode%s-4.6.0.vsix"
49
(pcase system-type
50
('gnu/linux "-linux-x64")
51
- ('darwin "-darwin-arm64")
+ ('darwin
52
+ (pcase (lsp-resolve-value lsp--system-arch)
53
+ ('x64 "-darwin-x64")
54
+ ('arm64 "-darwin-arm64")))
55
('windows-nt "-win32-x64")))
56
"Official SonarLint VSCode extension (vsix).
57
It contains the necessary language server and analyzers."
0 commit comments