From 7d2ddc1cde4c66ea678f2fe1c224309523cab7be Mon Sep 17 00:00:00 2001 From: Phil Miller <58376398+mr-pmillz@users.noreply.github.com> Date: Fri, 21 Jan 2022 19:51:16 -0500 Subject: [PATCH] fixes path in scripts/generate-man-page-md.sh (#1075) --- scripts/generate-man-page-md.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/generate-man-page-md.sh b/scripts/generate-man-page-md.sh index d3acb1af..9f6608d8 100755 --- a/scripts/generate-man-page-md.sh +++ b/scripts/generate-man-page-md.sh @@ -3,10 +3,10 @@ set -e # note that this reqires pandoc to be installed. -cat ./pkg/yqlib/doc/headers/Main.md > man.md +cat ./pkg/yqlib/doc/operators/headers/Main.md > man.md printf "\n# HOW IT WORKS\n" >> man.md tail -n +2 how-it-works.md >> man.md -for f in ./pkg/yqlib/doc/*.md; do +for f in ./pkg/yqlib/doc/*.md; do cat "$f" >> man.md done