Prevent full stop being interpreted as regex

Signed off by WaLLy3K <wally3k@pi-hole.net>
pull/1734/head
WaLLy3K 7 years ago committed by GitHub
parent 3b300a4d6a
commit 80c40e6050

@ -85,7 +85,8 @@ updateGravityFunc() {
# Scan an array of files for matching strings
scanList(){
local domain="${1}" lists="${2}" type="${3:-}"
# Escape full stops
local domain="${1//./\\.}" lists="${2}" type="${3:-}"
# Prevent grep from printing file path
cd "/etc/pihole" || exit 1

Loading…
Cancel
Save