mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
blacklist was being concatenated with wrong matter
This commit is contained in:
parent
66bb0e7bb3
commit
552f980430
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue