aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs')
-rw-r--r--lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs11
1 files changed, 0 insertions, 11 deletions
diff --git a/lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs b/lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs
index 29cbb77b..049e983c 100644
--- a/lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs
+++ b/lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs
@@ -1,20 +1,9 @@
const VERSION = "2021.07.01-19.49.02";
-const exitNotSupported = () => {
- console.error(
- chalk.red(`${os.platform()} ${os.arch()} is currently not supported.`)
- );
- process.exit(1);
-};
-
const target = (() => {
switch (os.platform()) {
case "darwin":
return "clojure-lsp-native-macos-amd64.zip";
- case "win32": {
- exitNotSupported();
- break;
- }
default:
return "clojure-lsp-native-linux-amd64.zip";
}