Skip to content

Commit

Permalink
Merge pull request #204 from rasa/rasa-fix-typo-in-bash-script
Browse files Browse the repository at this point in the history
Fix typo in setup-chromedriver.sh
  • Loading branch information
nanasess authored Aug 6, 2023
2 parents 9fe94e1 + 025995a commit 9cd356a
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 9cd356a

Please sign in to comment.