Skip to content

Commit 9fa38ce

Browse files
committed
Default to linux when os is not MAC/Windows
Fixes #65
1 parent defc049 commit 9fa38ce

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lsp-java.el

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,7 @@ The entry point of the language server is in `lsp-java-server-install-dir'/plugi
304304
"config_win")
305305
((string-equal system-type "darwin") ; Mac OS X
306306
"config_mac")
307-
((string-equal system-type "gnu/linux") ; linux
308-
"config_linux"))))
307+
(t "config_linux"))))
309308
(let ((inhibit-message t))
310309
(message (format "using config for %s" config)))
311310
(expand-file-name config lsp-java-server-install-dir)))

0 commit comments

Comments
 (0)