summaryrefslogtreecommitdiff
path: root/manage.sh
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2019-07-06 18:47:35 +0200
committerGitHub <noreply@github.com>2019-07-06 18:47:35 +0200
commit3faaf34e25db09988b113f74feb6227d3df3db95 (patch)
tree521b6e2a11c16b162c2b4f6eb01648b90ac14d4d /manage.sh
parent69c8ad86f3505051c029146382cbaf9531a35a8a (diff)
downloadsearxng-3faaf34e25db09988b113f74feb6227d3df3db95.tar.gz
searxng-3faaf34e25db09988b113f74feb6227d3df3db95.zip
Fix ./manage.sh robot_tests (#1633)
doi_resolvers / default_doi_resolver were missing in the settings_robots.yml file, so the test server was not able to start (crash). Since the output wasn't displayed, it was not obvious why the Selenium couldn't connect to searx.
Diffstat (limited to 'manage.sh')
-rwxr-xr-xmanage.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/manage.sh b/manage.sh
index a352ccc6e..c564827ac 100755
--- a/manage.sh
+++ b/manage.sh
@@ -35,7 +35,7 @@ install_geckodriver() {
if [ -z "$NOTFOUND" ]; then
return
fi
- GECKODRIVER_VERSION="v0.19.1"
+ GECKODRIVER_VERSION="v0.24.0"
PLATFORM="`python -c "import six; import platform; six.print_(platform.system().lower(), platform.architecture()[0])"`"
case "$PLATFORM" in
"linux 32bit" | "linux2 32bit") ARCH="linux32";;