Skip to content

Commit

Permalink
Fix incorrect plugin directory for language server binary
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskorn committed Sep 12, 2024
1 parent 1945cfb commit b3d459c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class JsonnetLSStartupHandler {
val repoInfo = getLatestReleaseInfo(httpClient, releaseURL, platform, arch)
log.info("Latest tag: ${repoInfo.tag} ; Download URL: ${repoInfo.downloadUrl}")

val binFile = File(PathManager.getPluginsPath().plus("/jsonnet-language-server/jsonnet-language-server"))
val binFile = File(PathManager.getPluginsPath().plus("/Jsonnet Language Server/jsonnet-language-server"))

// Check if LS binary already exists. If it does and the latest release is a higher version, prompt user to update
// If binary doesn't exist, download latest
Expand Down

0 comments on commit b3d459c

Please sign in to comment.