diff options
author | Alexandre Flament <alex@al-f.net> | 2021-10-02 17:18:05 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-10-02 17:18:05 +0200 |
commit | 253b8503765b6f0d21135254277e72d17a51e04a (patch) | |
tree | c52ae4a1d47140d5e531e78b7fbc11e0a354c7ec /manage | |
parent | 9e266ecad3cc20faf2c12cdab7862c29cf8df2ec (diff) | |
download | searxng-253b8503765b6f0d21135254277e72d17a51e04a.tar.gz searxng-253b8503765b6f0d21135254277e72d17a51e04a.zip |
SearXNG: SEARXNG_SETTINGS_PATH
Diffstat (limited to 'manage')
-rwxr-xr-x | manage | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -105,14 +105,14 @@ export DOCS_BUILD buildenv() { # settings file from repository's working tree are used by default - SEARX_SETTINGS_PATH="${REPO_ROOT}/searx/settings.yml" + SEARXNG_SETTINGS_PATH="${REPO_ROOT}/searx/settings.yml" if [ -r '/etc/searx/settings.yml' ]; then if ask_yn "should settings read from: /etc/searx/settings.yml"; then - SEARX_SETTINGS_PATH='/etc/searx/settings.yml' + SEARXNG_SETTINGS_PATH='/etc/searx/settings.yml' fi fi - export SEARX_SETTINGS_PATH + export SEARXNG_SETTINGS_PATH ( set -e SEARXNG_DEBUG=1 pyenv.cmd python utils/build_env.py 2>&1 \ |