From 430babca253369d82e864500118f914a9420f74b Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Sat, 2 Oct 2021 12:21:02 +0200 Subject: SearXNG: environment variables --- manage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manage') diff --git a/manage b/manage index e3bf27b50..553d3f208 100755 --- a/manage +++ b/manage @@ -115,7 +115,7 @@ buildenv() { export SEARX_SETTINGS_PATH ( set -e - SEARX_DEBUG=1 pyenv.cmd python utils/build_env.py 2>&1 \ + SEARXNG_DEBUG=1 pyenv.cmd python utils/build_env.py 2>&1 \ | prefix_stdout "${_Blue}BUILDENV${_creset} " ) return "${PIPESTATUS[0]}" -- cgit v1.2.3 From 253b8503765b6f0d21135254277e72d17a51e04a Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Sat, 2 Oct 2021 17:18:05 +0200 Subject: SearXNG: SEARXNG_SETTINGS_PATH --- manage | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'manage') diff --git a/manage b/manage index 553d3f208..b02128df9 100755 --- a/manage +++ b/manage @@ -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 \ -- cgit v1.2.3