mirror of https://github.com/searxng/searxng.git
fix a shell typo that generated a bogus file
This commit is contained in:
parent
e2afc1cdba
commit
2790402060
|
@ -22,7 +22,7 @@ install_geckodriver() {
|
||||||
echo '[!] Checking geckodriver'
|
echo '[!] Checking geckodriver'
|
||||||
# TODO : check the current geckodriver version
|
# TODO : check the current geckodriver version
|
||||||
set -e
|
set -e
|
||||||
geckodriver -V 2>1 > /dev/null || NOTFOUND=1
|
geckodriver -V > /dev/null 2>&1 || NOTFOUND=1
|
||||||
set +e
|
set +e
|
||||||
if [ -z $NOTFOUND ]; then
|
if [ -z $NOTFOUND ]; then
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue