diff options
| author | William Boman <william@redwill.se> | 2021-08-16 00:33:19 +0200 |
|---|---|---|
| committer | William Boman <william@redwill.se> | 2021-08-16 00:33:19 +0200 |
| commit | 1157990f8f6b1f643d099c0a6eee8e5fdc2aee07 (patch) | |
| tree | 396cba121594c679dfba176485f37be6de3bbc13 /lua | |
| parent | notify: always call vim.notify (diff) | |
| download | mason-1157990f8f6b1f643d099c0a6eee8e5fdc2aee07.tar mason-1157990f8f6b1f643d099c0a6eee8e5fdc2aee07.tar.gz mason-1157990f8f6b1f643d099c0a6eee8e5fdc2aee07.tar.bz2 mason-1157990f8f6b1f643d099c0a6eee8e5fdc2aee07.tar.lz mason-1157990f8f6b1f643d099c0a6eee8e5fdc2aee07.tar.xz mason-1157990f8f6b1f643d099c0a6eee8e5fdc2aee07.tar.zst mason-1157990f8f6b1f643d099c0a6eee8e5fdc2aee07.zip | |
terraformls: fix wrong linux target
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-lsp-installer/servers/terraformls/install.mjs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lua/nvim-lsp-installer/servers/terraformls/install.mjs b/lua/nvim-lsp-installer/servers/terraformls/install.mjs index 9b9a41ce..7e642757 100644 --- a/lua/nvim-lsp-installer/servers/terraformls/install.mjs +++ b/lua/nvim-lsp-installer/servers/terraformls/install.mjs @@ -1,9 +1,7 @@ const VERSION = "v0.18.3"; const exitNotSupported = () => { - console.error( - chalk.red(`${os.platform()} ${os.arch()} is currently not supported.`) - ); + console.error(chalk.red(`${os.platform()} ${os.arch()} is currently not supported.`)); process.exit(1); }; @@ -27,9 +25,9 @@ const target = (() => { default: switch (os.arch()) { case "arm64": - return "terraform-ls_0.18.3_linux_amd64.zip"; - default: return "terraform-ls_0.18.3_linux_arm64.zip"; + default: + return "terraform-ls_0.18.3_linux_amd64.zip"; } } })(); |
