diff --git a/browserstack/local_binary.py b/browserstack/local_binary.py index 130bd44..3f87ead 100644 --- a/browserstack/local_binary.py +++ b/browserstack/local_binary.py @@ -33,7 +33,7 @@ def __init__(self): self.path_index = 0 def is_alpine(self): - 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) if grepOutput.stdout.decode('utf-8').find('Alpine') > -1: return True return False