Merge pull request #3892 from pi-hole/fix/debug_strip_comments

Fix debugger stripping content it shouldn't
pull/3889/head
DL6ER 4 years ago committed by GitHub
commit db231ded91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -977,7 +977,7 @@ make_array_from_file() {
# Otherwise, read the file line by line
while IFS= read -r line;do
# Othwerise, strip out comments and blank lines
new_line=$(echo "${line}" | sed -e 's/#.*$//' -e '/^$/d')
new_line=$(echo "${line}" | sed -e 's/^\s*#.*$//' -e '/^$/d')
# If the line still has content (a non-zero value)
if [[ -n "${new_line}" ]]; then
# Put it into the array

Loading…
Cancel
Save