Fix echo error

This commit is contained in:
Jordan Bancino 2022-09-23 09:07:06 -04:00
parent f19f543fd2
commit b561c3f4fc

View file

@ -170,7 +170,7 @@ recipe_site() {
find docs/ -name '*.[1-9]' | while IFS= read -r man; do
html=$(basename "$man")
mandoc -Thtml "$man" > "$TELODENDRIA_PUB/$html.html"
echo "$man" > "$TELODENDRIA/$html.html"
echo "$man -> $TELODENDRIA_PUB/$html.html"
done
}