diff options
| author | William Boman <william@redwill.se> | 2021-11-25 06:55:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-25 06:55:18 +0100 |
| commit | b1e0f89f4c85a0767a76ff3e0db4c888b6ac3002 (patch) | |
| tree | 706375863687f9a64fd2fd1da5f4d5f86fbbe95d /lua/nvim-lsp-installer/installers/context.lua | |
| parent | actions/auto-assign-issues: add column_name arg (diff) | |
| download | mason-b1e0f89f4c85a0767a76ff3e0db4c888b6ac3002.tar mason-b1e0f89f4c85a0767a76ff3e0db4c888b6ac3002.tar.gz mason-b1e0f89f4c85a0767a76ff3e0db4c888b6ac3002.tar.bz2 mason-b1e0f89f4c85a0767a76ff3e0db4c888b6ac3002.tar.lz mason-b1e0f89f4c85a0767a76ff3e0db4c888b6ac3002.tar.xz mason-b1e0f89f4c85a0767a76ff3e0db4c888b6ac3002.tar.zst mason-b1e0f89f4c85a0767a76ff3e0db4c888b6ac3002.zip | |
fix(windows): unset PSMODULEPATH before invoking powershell scripts (#278)
Diffstat (limited to 'lua/nvim-lsp-installer/installers/context.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/installers/context.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/nvim-lsp-installer/installers/context.lua b/lua/nvim-lsp-installer/installers/context.lua index 97f200d5..bdb993a5 100644 --- a/lua/nvim-lsp-installer/installers/context.lua +++ b/lua/nvim-lsp-installer/installers/context.lua @@ -44,6 +44,7 @@ local function fetch(url, callback) process.lazy_spawn("powershell.exe", { args = { "-NoProfile", "-Command", table.concat(ps_script, ";") }, stdio_sink = stdio.sink, + env = process.graft_env({}, { "PSMODULEPATH" }), }) ) end |
