1
0
mirror of https://github.com/pi-hole/pi-hole synced 2025-02-08 22:22:38 +00:00

Remove curl -V temp variable

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2025-02-02 20:57:13 +01:00
parent 37718c65e9
commit 7162be18e2
No known key found for this signature in database
GPG Key ID: 00135ACBD90B28DD

View File

@ -414,7 +414,7 @@ gravity_DownloadBlocklists() {
echo -e " ${INFO} Storing gravity database in ${COL_BOLD}${gravityDBfile}${COL_NC}"
fi
local url domain str target compression adlist_type directory curlVersion success
local url domain str target compression adlist_type directory success
echo ""
# Prepare new gravity database
@ -498,8 +498,7 @@ gravity_DownloadBlocklists() {
# Use compression to reduce the amount of data that is transferred
# between the Pi-hole and the ad list provider. Use this feature
# only if it is supported by the locally available version of curl
curlVersion=$(curl -V)
if echo "${curlVersion}" | grep -q "Features:.* libz"; then
if curl -V | grep -q "Features:.* libz"; then
compression="--compressed"
echo -e " ${INFO} Using libz compression\n"
else