browserstack/browserstack-local-python

grep is spelled wrong in is_alpine function

Opened this issue · 1 comments

grepOutput = subprocess.run("gfrep -w NAME /etc/os-release", capture_output=True, shell=True)

should be

grepOutput = subprocess.run("grep -w NAME /etc/os-release", capture_output=True, shell=True)

This has been fixed in e0c57c9