[fix] ./manage: upgrade geckodriver when GECKODRIVER_VERSION change

This commit is contained in:
Alexandre Flament 2021-12-24 09:14:15 +01:00
parent 69af219d39
commit 81abc5f4c2

5
manage
View file

@ -485,10 +485,9 @@ gecko.driver() {
( set -e
pyenv.activate
# TODO : check the current geckodriver version
geckodriver -V > /dev/null 2>&1 || NOTFOUND=1
INSTALLED_VERSION=$(geckodriver -V 2> /dev/null | head -1 | awk '{ print "v" $2}') || INSTALLED_VERSION=""
set +e
if [ -z "$NOTFOUND" ]; then
if [ "${INSTALLED_VERSION}" = "${GECKODRIVER_VERSION}" ]; then
build_msg INSTALL "geckodriver already installed"
return
fi