From 831330ef856f13f0e2a9b691fa4ea5d5fad05d3c Mon Sep 17 00:00:00 2001
From: Pawel Krawczyk
Date: Fri, 9 Jan 2015 13:01:48 +0000
Subject: [PATCH] typo
---
blacklist.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blacklist.sh b/blacklist.sh
index 5e0447b..ff013ac 100755
--- a/blacklist.sh
+++ b/blacklist.sh
@@ -76,7 +76,7 @@ for url in $urls; do
curl -v -s ${COMPRESS_OPT} -k "$url" >"${unsorted_blocklist}" 2>"${headers}"
# this is required for blocklist.de that sends compressed content if asked for it or not
- if grep -qi 'content-encoding: gzip' ${headers }; then
+ if grep -qi 'content-encoding: gzip' "${headers}"; then
mv "${unsorted_blocklist}" "${unsorted_blocklist}.gz"
gzip -d "${unsorted_blocklist}"
fi