diff options
Diffstat (limited to 'lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs')
| -rw-r--r-- | lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs b/lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs deleted file mode 100644 index 049e983c..00000000 --- a/lua/nvim-lsp-installer/servers/clojure_lsp/install.mjs +++ /dev/null @@ -1,17 +0,0 @@ -const VERSION = "2021.07.01-19.49.02"; - -const target = (() => { - switch (os.platform()) { - case "darwin": - return "clojure-lsp-native-macos-amd64.zip"; - default: - return "clojure-lsp-native-linux-amd64.zip"; - } -})(); - -const downloadUrl = `https://github.com/clojure-lsp/clojure-lsp/releases/download/${VERSION}/${target}`; - -await $`wget ${downloadUrl}`; -await $`unzip -o ${target}`; -await $`chmod +x clojure-lsp`; -await $`rm ${target}`; |
