diff options
| author | Alexandre Flament <alex@al-f.net> | 2020-12-21 10:55:28 +0100 |
|---|---|---|
| committer | Alexandre Flament <alex@al-f.net> | 2020-12-21 10:55:28 +0100 |
| commit | db5b060455a04961f78a06181e7b6dd04a694315 (patch) | |
| tree | 6cace362a4a319825278d8b69d5f98dceec55bce | |
| parent | 59217bb5bed86926b2bbd84f406ed022b0762c6e (diff) | |
[fix] update buildenv
CONTACT_URL is unset in Makefile, but searx/brand.py and
utils/brand.env are not updated.
This commit fixes this issue.
| -rw-r--r-- | searx/brand.py | 2 | ||||
| -rw-r--r-- | utils/brand.env | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/searx/brand.py b/searx/brand.py index 0eaaf0be3..7fcab6fad 100644 --- a/searx/brand.py +++ b/searx/brand.py @@ -4,4 +4,4 @@ ISSUE_URL = 'https://github.com/searx/searx/issues' SEARX_URL = 'https://searx.me' DOCS_URL = 'https://searx.github.io/searx' PUBLIC_INSTANCES = 'https://searx.space' -CONTACT_URL = 'mailto:contact@example.com' +CONTACT_URL = '' diff --git a/utils/brand.env b/utils/brand.env index 660160e43..2e763159d 100644 --- a/utils/brand.env +++ b/utils/brand.env @@ -4,4 +4,4 @@ export ISSUE_URL='https://github.com/searx/searx/issues' export SEARX_URL='https://searx.me' export DOCS_URL='https://searx.github.io/searx' export PUBLIC_INSTANCES='https://searx.space' -export CONTACT_URL='mailto:contact@example.com' +export CONTACT_URL='' |