From 211795f8d503d73d3ae8d644baae1b4eab0a9328 Mon Sep 17 00:00:00 2001 From: alexis-opolka <53085471+alexis-opolka@users.noreply.github.com> Date: Sun, 16 Mar 2025 11:28:26 +0100 Subject: [PATCH] Fixes the issue with unauthorized I/O redirection Signed-off-by: alexis-opolka <53085471+alexis-opolka@users.noreply.github.com> --- shell/navi.plugin.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/shell/navi.plugin.ps1 b/shell/navi.plugin.ps1 index 3983898..f31d74a 100644 --- a/shell/navi.plugin.ps1 +++ b/shell/navi.plugin.ps1 @@ -8,6 +8,7 @@ $null = New-Module { Arguments = $args; RedirectStandardOutput = $true; WorkingDirectory = $PWD; + UseShellExecute = $false; } $p = [System.Diagnostics.Process]@{StartInfo = $startArgs}