aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/servers/tflint
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2021-09-01 10:29:23 +0200
committerGitHub <noreply@github.com>2021-09-01 10:29:23 +0200
commitbfbf5fbd39fa75847bf23da2c46d12fe2728fb78 (patch)
treef05d2f041f895ff639684c10f57d19f1d4a433e0 /lua/nvim-lsp-installer/servers/tflint
parentREADME: simplify example a bit, add clarifying comment (diff)
downloadmason-bfbf5fbd39fa75847bf23da2c46d12fe2728fb78.tar
mason-bfbf5fbd39fa75847bf23da2c46d12fe2728fb78.tar.gz
mason-bfbf5fbd39fa75847bf23da2c46d12fe2728fb78.tar.bz2
mason-bfbf5fbd39fa75847bf23da2c46d12fe2728fb78.tar.lz
mason-bfbf5fbd39fa75847bf23da2c46d12fe2728fb78.tar.xz
mason-bfbf5fbd39fa75847bf23da2c46d12fe2728fb78.tar.zst
mason-bfbf5fbd39fa75847bf23da2c46d12fe2728fb78.zip
add Windows support (#70)
Diffstat (limited to 'lua/nvim-lsp-installer/servers/tflint')
-rw-r--r--lua/nvim-lsp-installer/servers/tflint/init.lua15
1 files changed, 9 insertions, 6 deletions
diff --git a/lua/nvim-lsp-installer/servers/tflint/init.lua b/lua/nvim-lsp-installer/servers/tflint/init.lua
index 396f1cf9..51de105e 100644
--- a/lua/nvim-lsp-installer/servers/tflint/init.lua
+++ b/lua/nvim-lsp-installer/servers/tflint/init.lua
@@ -1,6 +1,7 @@
local server = require "nvim-lsp-installer.server"
local notify = require "nvim-lsp-installer.notify"
local path = require "nvim-lsp-installer.path"
+local installers = require "nvim-lsp-installer.installers"
local shell = require "nvim-lsp-installer.installers.shell"
local root_dir = server.get_server_root_path "tflint"
@@ -10,12 +11,14 @@ local bin_path = path.concat { root_dir, "tflint" }
return server.Server:new {
name = "tflint",
root_dir = root_dir,
- installer = shell.remote("https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh", {
- env = {
- TFLINT_INSTALL_PATH = root_dir,
- TFLINT_INSTALL_NO_ROOT = 1,
- },
- }),
+ installer = installers.when {
+ unix = shell.remote_bash("https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh", {
+ env = {
+ TFLINT_INSTALL_PATH = root_dir,
+ TFLINT_INSTALL_NO_ROOT = 1,
+ },
+ }),
+ },
default_options = {
cmd = { bin_path, "--langserver" },
},