1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searxng_ynh.git synced 2024-09-03 20:26:00 +02:00

Fix linter issue

This commit is contained in:
ewilly 2023-09-18 19:51:03 +02:00
parent 2b0ee5f860
commit 64243f3984
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ popd
ynh_script_progression --message="Installing SearXNG..." --weight=2 ynh_script_progression --message="Installing SearXNG..." --weight=2
python3 -m venv --system-site-packages "$install_dir/searxng-pyenv" python3 -m venv --system-site-packages "$install_dir/searxng-pyenv"
set +u; source "$install_dir/searxng-pyenv/bin/activate"; set -u set +o nounset; source "$install_dir/searxng-pyenv/bin/activate"; set -o nounset
pip3 install -U pip setuptools wheel pyyaml --no-cache-dir pip3 install -U pip setuptools wheel pyyaml --no-cache-dir
ynh_exec_fully_quiet pip3 install -e "$install_dir/searxng-src" ynh_exec_fully_quiet pip3 install -e "$install_dir/searxng-src"

View file

@ -55,7 +55,7 @@ then
ynh_secure_remove --file="$install_dir/searxng-pyenv" ynh_secure_remove --file="$install_dir/searxng-pyenv"
python3 -m venv --system-site-packages "$install_dir/searxng-pyenv" python3 -m venv --system-site-packages "$install_dir/searxng-pyenv"
set +u; source "$install_dir/searxng-pyenv/bin/activate"; set -u set +o nounset; source "$install_dir/searxng-pyenv/bin/activate"; set -o nounset
pip3 install -U pip setuptools wheel pyyaml --no-cache-dir pip3 install -U pip setuptools wheel pyyaml --no-cache-dir
ynh_exec_fully_quiet pip3 install -e "$install_dir/searxng-src" ynh_exec_fully_quiet pip3 install -e "$install_dir/searxng-src"
fi fi