Skip to content

Commit

Permalink
Fix typo in setup-chromedriver.sh
Browse files Browse the repository at this point in the history
Sorry, my bad.
  • Loading branch information
rasa committed Aug 6, 2023
1 parent 9fe94e1 commit 025995a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/setup-chromedriver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 025995a

Please sign in to comment.