File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/main/kotlin/com/caretdev/plugins/idea/preloading Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 33
44pluginGroup = com.caretdev.plugins.idea
55pluginName = intersystems
6- pluginVersion = 0.0.5
6+ pluginVersion = 0.0.6
77
88# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99# for insight into build numbers and IntelliJ Platform versions.s
Original file line number Diff line number Diff line change @@ -36,8 +36,11 @@ class LSPUtils(private val pluginPath: Path) {
3636 }
3737
3838 val os = OSUtils .operatingSystem
39- val arch = System .getProperty(" os.arch" )
39+ var arch = System .getProperty(" os.arch" )
4040 val exe = if (OSUtils .operatingSystem == OSUtils .WINDOWS ) " .exe" else " "
41+ if (arch == " amd64" ) {
42+ arch = " x86_64"
43+ }
4144 val lsPath = pluginPath.resolve(" lib/language-server/$os -$arch /intersystems-ls$exe " )
4245 checkExecutable(lsPath)
4346
You can’t perform that action at this time.
0 commit comments