From b561c3f4fc12f05901ffad89b0afd475fd254a3d Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Fri, 23 Sep 2022 09:07:06 -0400 Subject: [PATCH] Fix echo error --- tools/bin/td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bin/td b/tools/bin/td index 975e3ae..d37dcef 100644 --- a/tools/bin/td +++ b/tools/bin/td @@ -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 }