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
1 changed files with 1 additions and 1 deletions

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