diff options
| author | William Boman <william@redwill.se> | 2023-02-20 22:19:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-20 22:19:39 +0100 |
| commit | b8a6632a0f2d263199d5d480ca85477fe0f414ab (patch) | |
| tree | 57e1ee0f3cef078ec144ecdf1b2fa861acf47755 /lua/mason-registry/powershell-editor-services/init.lua | |
| parent | chore: autogenerate (#1015) (diff) | |
| download | mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.gz mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.bz2 mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.lz mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.xz mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.zst mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.zip | |
feat: configurable registries (#1016)
Diffstat (limited to 'lua/mason-registry/powershell-editor-services/init.lua')
| -rw-r--r-- | lua/mason-registry/powershell-editor-services/init.lua | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lua/mason-registry/powershell-editor-services/init.lua b/lua/mason-registry/powershell-editor-services/init.lua deleted file mode 100644 index ab52478d..00000000 --- a/lua/mason-registry/powershell-editor-services/init.lua +++ /dev/null @@ -1,21 +0,0 @@ -local Pkg = require "mason-core.package" -local std = require "mason-core.managers.std" -local github = require "mason-core.managers.github" - -return Pkg.new { - name = "powershell-editor-services", - desc = [[A common platform for PowerShell development support in any editor or application!]], - homepage = "https://github.com/PowerShell/PowerShellEditorServices", - languages = { Pkg.Lang.PowerShell }, - categories = { Pkg.Cat.LSP }, - ---@async - install = function() - std.ensure_executable("pwsh", { help_url = "https://github.com/PowerShell/PowerShell#get-powershell" }) - github - .unzip_release_file({ - repo = "PowerShell/PowerShellEditorServices", - asset_file = "PowerShellEditorServices.zip", - }) - .with_receipt() - end, -} |
