Skip to content

Commit e0c57c9

Browse files
authored
Merge pull request #52 from browserstack/LOC_999_alpine_check_fix
Fix alpine check command
2 parents ca2a08b + 318af20 commit e0c57c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

browserstack/local_binary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(self):
3333
self.path_index = 0
3434

3535
def is_alpine(self):
36-
grepOutput = subprocess.run("gfrep -w NAME /etc/os-release", capture_output=True, shell=True)
36+
grepOutput = subprocess.run("grep -w NAME /etc/os-release", capture_output=True, shell=True)
3737
if grepOutput.stdout.decode('utf-8').find('Alpine') > -1:
3838
return True
3939
return False

0 commit comments

Comments
 (0)