Skip to content

Commit

Permalink
set UseShellExecute to false
Browse files Browse the repository at this point in the history
  • Loading branch information
xinyuxu1026 authored and bgavrilMS committed Jan 28, 2025
1 parent 7116a7d commit 027b0a3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,8 @@ private void OpenLinuxBrowser(string openToolPath, string url)
ProcessStartInfo psi = new ProcessStartInfo(openToolPath, url)
{
RedirectStandardOutput = true,
RedirectStandardError = true
RedirectStandardError = true,
UseShellExecute = false
};

Process.Start(psi);
Expand Down

0 comments on commit 027b0a3

Please sign in to comment.