We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7895de + e0c57c9 commit 5c66f34Copy full SHA for 5c66f34
browserstack/local_binary.py
@@ -33,7 +33,7 @@ def __init__(self):
33
self.path_index = 0
34
35
def is_alpine(self):
36
- grepOutput = subprocess.run("gfrep -w NAME /etc/os-release", capture_output=True, shell=True)
+ grepOutput = subprocess.run("grep -w NAME /etc/os-release", capture_output=True, shell=True)
37
if grepOutput.stdout.decode('utf-8').find('Alpine') > -1:
38
return True
39
return False
0 commit comments