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