Skip to content

Commit

Permalink
fix: alpine shell command
Browse files Browse the repository at this point in the history
  • Loading branch information
kamal-kaur04 committed Jan 3, 2025
1 parent 65b3299 commit 06e496a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BrowserStackLocal/BrowserStackLocal/BrowserStackTunnel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static bool IsAlpine()
{
try
{
string[] output = Util.RunShellCommand("grep", "-w 'NAME' /etc/os-release");
string[] output = Util.RunShellCommand("grep", "-w \'NAME\' /etc/os-release");
return output[0]?.ToLower()?.Contains("alpine") ?? false;
}
catch (System.Exception ex)
Expand Down

0 comments on commit 06e496a

Please sign in to comment.