summaryrefslogtreecommitdiff
path: root/manage
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-07-31 11:32:42 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2021-08-01 07:05:00 +0200
commita7a181064fa52113093783a6a9078bffb512dedc (patch)
treedaf375cff5d8e4551f75d5a3c092ef6cd3b92b3d /manage
parent38ee88b3905148460e30982715277e7b30857629 (diff)
downloadsearxng-a7a181064fa52113093783a6a9078bffb512dedc.tar.gz
searxng-a7a181064fa52113093783a6a9078bffb512dedc.zip
manage script: remove unused reference to utils/brand.env and .config.sh
Diffstat (limited to 'manage')
-rwxr-xr-xmanage15
1 files changed, 0 insertions, 15 deletions
diff --git a/manage b/manage
index 04de3ee59..df6b1c7d1 100755
--- a/manage
+++ b/manage
@@ -5,9 +5,6 @@
# shellcheck source=utils/lib.sh
source "$(dirname "${BASH_SOURCE[0]}")/utils/lib.sh"
-# shellcheck source=utils/brand.env
-source "${REPO_ROOT}/utils/brand.env"
-source_dot_config
# shellcheck source=utils/lib_static.sh
source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_static.sh"
@@ -123,17 +120,6 @@ buildenv() {
return "${PIPESTATUS[0]}"
}
-buildenv.unset_env(){
- # Some defaults in the settings.yml are taken from the environment,
- # e.g. SEARX_BIND_ADDRESS (:py:obj:`searx.settings_defaults.SHEMA`). In
- # some tasks (e.g. test.robot) we do not want these envorionment applied.
- unset GIT_URL
- unset GIT_BRANCH
- unset SEARX_URL
- unset SEARX_PORT
- unset SEARX_BIND_ADDRESS
-}
-
babel.compile() {
build_msg BABEL compile
pyenv.cmd pybabel compile -d "${REPO_ROOT}/searx/translations"
@@ -474,7 +460,6 @@ test.coverage() {
test.robot() {
build_msg TEST 'robot'
- buildenv.unset_env
gecko.driver
PYTHONPATH=. pyenv.cmd python searx/testing.py robot
dump_return $?