1
0
mirror of https://github.com/moparisthebest/pi-hole synced 2024-11-05 00:45:08 -05:00

blacklist was being concatenated with wrong matter

This commit is contained in:
rmceoin 2015-06-22 13:33:02 -07:00
parent 66bb0e7bb3
commit 552f980430

View File

@ -83,7 +83,7 @@ find $origin/ -type f -name "*.$justDomainsExtension" -exec cat {} \; | tr -d '\
if [[ -f $blacklist ]];then
numberOf=$(cat $blacklist | wc -l | sed 's/^[ \t]*//')
echo "** Blacklisting $numberOf domain(s)..."
cat $blacklist >> /tmp/matter.txt
cat $blacklist >> $origin/$matter
else
:
fi