Skip to content

Commit

Permalink
Linux upgrade.
Browse files Browse the repository at this point in the history
  • Loading branch information
ffMathy committed Feb 20, 2023
1 parent 2fc7468 commit 1151910
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/FluffySpoon.Ngrok/NgrokProcess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ private ProcessStartInfo GetWindowsProcessStartInfo()
private ProcessStartInfo GetLinuxProcessStartInfo()
{
var linuxProcessStartInfo =
new ProcessStartInfo("/bin/bash", "-c \"" + Directory.GetCurrentDirectory() + "/ngrok start --none\"")
new ProcessStartInfo(
Path.Combine(Directory.GetCurrentDirectory(), "ngrok"),
$"start --none")
{
CreateNoWindow = true,
WindowStyle = GetProcessWindowStyle(),
Expand Down

0 comments on commit 1151910

Please sign in to comment.