williamboman / mason.nvim

Portable package manager for Neovim that runs everywhere Neovim runs. Easily install and manage LSP servers, DAP servers, linters, and formatters.
Apache License 2.0
7.22k stars 258 forks source link

fix(powershell) convert "Stop" to 'Stop' and a join parameter to single quotes #1740

Open thomastan opened 1 week ago

thomastan commented 1 week ago

Fixes http://github.com/williamboman/mason.nvim/issues/1739

sshot3-fix

A single-quote was needed to pass the 'Stop' through to powershell/pwsh correctly.

'SilentlyContinue' was single-quoted while "Stop" was double-quoted. Converting "Stop" → 'Stop'.