We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2563f04 + 6e2607c commit a2b9de3Copy full SHA for a2b9de3
2 files changed
man/md2man-all.sh
@@ -18,5 +18,5 @@ for FILE in *.md; do
18
continue
19
fi
20
mkdir -p "./man${num}"
21
- md2man -in "$FILE" -out "./man${num}/${name}"
+ go-md2man -in "$FILE" -out "./man${num}/${name}"
22
done
scripts/docs/generate-man.sh
@@ -4,9 +4,9 @@ set -eu -o pipefail
4
5
mkdir -p ./man/man1
6
7
-if ! command -v md2man &> /dev/null; then
+if ! command -v go-md2man &> /dev/null; then
8
# yay, go install creates a binary named "v2" ¯\_(ツ)_/¯
9
- go build -o "/go/bin/md2man" ./vendor/github.com/cpuguy83/go-md2man/v2
+ go build -o "/go/bin/go-md2man" ./vendor/github.com/cpuguy83/go-md2man/v2
10
11
12
# Generate man pages from cobra commands
0 commit comments