Skip to content

Commit

Permalink
Merge pull request #1739 from RaspAP/fix/debug-log
Browse files Browse the repository at this point in the history
Fix quoting for dnsmasq_info()
  • Loading branch information
billz authored Jan 30, 2025
2 parents d689024 + 739057c commit b9842b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installers/debuglog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ function _dnsmasq_info() {
if [ -f "$file" ]; then
contents+="\n$file contents:\n"
contents+="$(cat $file)"
contents="${contents}$\n"
contents+=$'\n'
fi
done
_log_write $contents
_log_write "$contents"
else
_log_write "Not found: ${DNSMASQ_D_DIR}"
fi
Expand Down

0 comments on commit b9842b5

Please sign in to comment.