Fix stickler complaints
Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
This commit is contained in:
parent
af5fc6547a
commit
1ca852191f
|
@ -138,7 +138,7 @@ AddDomain() {
|
|||
bool=true
|
||||
domain="${1}"
|
||||
|
||||
[[ "${wildcard}" == true ]] && domain="((^)|(\\.))$(echo "${domain}" | sed "s/\./\\\./g")$"
|
||||
[[ "${wildcard}" == true ]] && domain="((^)|(\\.))${domain//\\./\\\.}$"
|
||||
|
||||
# Is the domain in the list?
|
||||
# Search only for exactly matching lines
|
||||
|
@ -186,7 +186,7 @@ RemoveDomain() {
|
|||
[[ -z "${type}" ]] && type="--wildcard-only"
|
||||
domain="${1}"
|
||||
|
||||
[[ "${wildcard}" == true ]] && domain="((^)|(\\.))$(echo "${domain}" | sed "s/\./\\\./g")$"
|
||||
[[ "${wildcard}" == true ]] && domain="((^)|(\\.))${domain//\\./\\\.}$"
|
||||
|
||||
bool=true
|
||||
# Is it in the list?
|
||||
|
|
Loading…
Reference in New Issue