Fix stray backslash warning in manhtml.

This commit is contained in:
Jonas 'Sortie' Termansen 2024-01-28 13:56:14 +01:00
parent e7fae57678
commit dd4e813550
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ for section in $SECTIONS; do
done
(find . -name '*.html' | while read FILE; do
grep -Eoh 'href=\"../man[[:digit:]]/[^/]+\.html\"' "$FILE" || true
grep -Eoh 'href="../man[[:digit:]]/[^/]+\.html"' "$FILE" || true
done) | sort -u | grep -Eo 'man[[:digit:]]/[^/]+\.html' | sed 's/\.html$//' |
while read manpage; do
if ! [ -e "$manpage" ]; then