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 bda4700 commit 30ecd65Copy full SHA for 30ecd65
install.ps1
@@ -1,16 +1,14 @@
1
$version = '0.1.32'
2
$name = 'languageclient'
3
-$url = "https://github.com/autozimu/LanguageClient-neovim/releases/download/$version/"
4
-$filename = "$name-$version-"
+$url = "https://github.com/autozimu/LanguageClient-neovim/releases/download/$version/$name-$version-"
5
6
if ($ENV:PROCESSOR_ARCHITECTURE -eq 'AMD64') {
7
- $filename += 'x86_64'
+ $url += 'x86_64'
8
} else {
9
- $filename += 'i686'
+ $url += 'i686'
10
}
11
12
-$filename += '-pc-windows-gnu.exe'
13
-$url += $filename
+$url += '-pc-windows-gnu.exe'
14
15
$path = "bin\$name.exe"
16
if (Test-Path $path) {
0 commit comments