diff options
author | Alexandre Flament <alex@al-f.net> | 2021-10-29 10:58:35 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2021-10-29 14:09:58 +0000 |
commit | 5c4afdd737d0c38d1f41dff3b01c8a52f297308b (patch) | |
tree | 1823456f99049345a08149c9d8d703e02f86cc4b /utils | |
parent | 13c355c4c45d79f84666c8306463969db804f83c (diff) | |
download | searxng-5c4afdd737d0c38d1f41dff3b01c8a52f297308b.tar.gz searxng-5c4afdd737d0c38d1f41dff3b01c8a52f297308b.zip |
[fix] filtron.sh: fix filtron proxy error
morty & filtron upgrade golang from v1.13.5 to v1.17.2 (#stable go[1])
Closes: #443
[1] https://golang.org/dl/#stable
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/filtron.sh | 2 | ||||
-rwxr-xr-x | utils/morty.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/filtron.sh b/utils/filtron.sh index a608f7769..0c111f922 100755 --- a/utils/filtron.sh +++ b/utils/filtron.sh @@ -42,7 +42,7 @@ SERVICE_GROUP="${SERVICE_USER}" SERVICE_GROUP="${SERVICE_USER}" GO_ENV="${SERVICE_HOME}/.go_env" -GO_PKG_URL="https://dl.google.com/go/go1.13.5.linux-amd64.tar.gz" +GO_PKG_URL="https://golang.org/dl/go1.17.2.linux-amd64.tar.gz" GO_TAR=$(basename "$GO_PKG_URL") APACHE_FILTRON_SITE="searx.conf" diff --git a/utils/morty.sh b/utils/morty.sh index 0c5401eeb..21d031f0c 100755 --- a/utils/morty.sh +++ b/utils/morty.sh @@ -28,7 +28,7 @@ SERVICE_GROUP="${SERVICE_USER}" SERVICE_ENV_DEBUG=false GO_ENV="${SERVICE_HOME}/.go_env" -GO_PKG_URL="https://dl.google.com/go/go1.13.5.linux-amd64.tar.gz" +GO_PKG_URL="https://golang.org/dl/go1.17.2.linux-amd64.tar.gz" GO_TAR=$(basename "$GO_PKG_URL") # shellcheck disable=SC2034 |