Skip to content

Commit

Permalink
Merge pull request #241 from rasa/patch-1
Browse files Browse the repository at this point in the history
Fix logic bug in setup-chromedriver.sh
  • Loading branch information
nanasess authored Oct 26, 2023
2 parents 3b4e701 + 5f44855 commit e66222f
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 @@ -91,7 +91,7 @@ unzip -o -q chromedriver.zip
echo Installing chromedriver to /usr/local/bin
${sudo} mv "chromedriver-${ARCH}/chromedriver" /usr/local/bin/chromedriver
rm -fr chromedriver.zip chromedriver-*
if [[ -x "${CHROMEAPP}" ]]; then
if command -v "${CHROMEAPP}" >/dev/null; then
echo Chrome version:
"${CHROMEAPP}" --version
fi
Expand Down

0 comments on commit e66222f

Please sign in to comment.