From 318af207ace25ba338971df5536026bf53cfdaf7 Mon Sep 17 00:00:00 2001 From: AdityaHirapara Date: Tue, 30 Jul 2024 14:51:27 +0530 Subject: [PATCH] Fix alpine check command --- browserstack/local_binary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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