aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/servers/phpactor/init.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-01-06 18:21:19 +0100
committerGitHub <noreply@github.com>2022-01-06 18:21:19 +0100
commit5cc73ef7360866c65169e0e7d55d3b59fb3b6eaa (patch)
treeb958f26ae3964e7ba8aa3572b81ece1e23b49df1 /lua/nvim-lsp-installer/servers/phpactor/init.lua
parentrerun autogen (diff)
downloadmason-5cc73ef7360866c65169e0e7d55d3b59fb3b6eaa.tar
mason-5cc73ef7360866c65169e0e7d55d3b59fb3b6eaa.tar.gz
mason-5cc73ef7360866c65169e0e7d55d3b59fb3b6eaa.tar.bz2
mason-5cc73ef7360866c65169e0e7d55d3b59fb3b6eaa.tar.lz
mason-5cc73ef7360866c65169e0e7d55d3b59fb3b6eaa.tar.xz
mason-5cc73ef7360866c65169e0e7d55d3b59fb3b6eaa.tar.zst
mason-5cc73ef7360866c65169e0e7d55d3b59fb3b6eaa.zip
feat(ui): display outdated servers (#395)
Diffstat (limited to 'lua/nvim-lsp-installer/servers/phpactor/init.lua')
-rw-r--r--lua/nvim-lsp-installer/servers/phpactor/init.lua6
1 files changed, 2 insertions, 4 deletions
diff --git a/lua/nvim-lsp-installer/servers/phpactor/init.lua b/lua/nvim-lsp-installer/servers/phpactor/init.lua
index 42ef65f6..45ce5ccd 100644
--- a/lua/nvim-lsp-installer/servers/phpactor/init.lua
+++ b/lua/nvim-lsp-installer/servers/phpactor/init.lua
@@ -16,10 +16,8 @@ return function(name, root_dir)
unix = {
std.git_clone "https://github.com/phpactor/phpactor.git",
composer.install(),
- context.receipt(function(receipt, ctx)
- receipt:with_primary_source(
- receipt.git_remote("https://github.com/phpactor/phpactor.git", ctx.requested_server_version)
- )
+ context.receipt(function(receipt)
+ receipt:with_primary_source(receipt.git_remote "https://github.com/phpactor/phpactor.git")
end),
},
},