Correctly pick first browser choice.

This commit is contained in:
David Tomaschik
2021-05-11 15:06:10 -07:00
parent 673fca3c05
commit e05a6aa473

View File

@@ -34,6 +34,7 @@ if [ -z "${BROWSER}" ] ; then
for t in google-chrome-beta google-chrome firefox ; do for t in google-chrome-beta google-chrome firefox ; do
if BROWSER=$(command -v ${t}); then if BROWSER=$(command -v ${t}); then
export BROWSER export BROWSER
break
fi fi
done done
fi fi