Skip to content

Commit 06e496a

Browse files
committed
fix: alpine shell command
1 parent 65b3299 commit 06e496a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BrowserStackLocal/BrowserStackLocal/BrowserStackTunnel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ static bool IsAlpine()
5757
{
5858
try
5959
{
60-
string[] output = Util.RunShellCommand("grep", "-w 'NAME' /etc/os-release");
60+
string[] output = Util.RunShellCommand("grep", "-w \'NAME\' /etc/os-release");
6161
return output[0]?.ToLower()?.Contains("alpine") ?? false;
6262
}
6363
catch (System.Exception ex)

0 commit comments

Comments
 (0)