From 025995a02c21f8e802effd63a30fa7aa04499171 Mon Sep 17 00:00:00 2001 From: Ross Smith II Date: Sun, 6 Aug 2023 10:49:57 -0700 Subject: [PATCH] Fix typo in setup-chromedriver.sh Sorry, my bad. --- lib/setup-chromedriver.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/setup-chromedriver.sh b/lib/setup-chromedriver.sh index be5d522e..91f756ba 100755 --- a/lib/setup-chromedriver.sh +++ b/lib/setup-chromedriver.sh @@ -20,7 +20,7 @@ if [[ "${ARCH}" =~ ^linux64 ]]; then apps=() test -z "${sudo}" && apps+=(sudo) type -a curl > /dev/null 2>&1 || apps+=(curl) - type -a "${APP}" > /dev/null 2>&1 || apps+=("${APP}") + type -a "${CHROMEAPP}" > /dev/null 2>&1 || apps+=("${APP}") type -a jq > /dev/null 2>&1 || apps+=(jq) type -a unzip > /dev/null 2>&1 || apps+=(unzip) if (("${#apps[@]}")); then