Skip to content

Commit

Permalink
Fix logic bug in setup-chromedriver.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
rasa authored Oct 25, 2023
1 parent 3b4e701 commit 5f44855
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 5f44855

Please sign in to comment.