mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-02-26 21:18:18 +00:00
move 2 quotes
This commit is contained in:
parent
53870ac647
commit
12aefc0d8b
1 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ HandleOther(){
|
|||
|
||||
PopBlacklistFile(){
|
||||
#check blacklist file exists, and if not, create it
|
||||
if [[ ! -f "${blacklistFile"} ]];then
|
||||
if [[ ! -f "${blacklistFile}" ]];then
|
||||
touch "${blacklistFile}"
|
||||
fi
|
||||
for dom in "${domList[@]}"; do
|
||||
|
@ -83,7 +83,7 @@ AddDomain(){
|
|||
RemoveDomain(){
|
||||
|
||||
bool=false
|
||||
grep -Ex -q "$1" "${blacklistFile"} || bool=true
|
||||
grep -Ex -q "$1" "${blacklistFile}" || bool=true
|
||||
if ${bool}; then
|
||||
#Domain is not in the blacklist file, no need to Remove
|
||||
if ${verbose}; then
|
||||
|
|
Loading…
Add table
Reference in a new issue