mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
72f92cf986
If 'go-md2man' is not installed,
an error can occur when running md2man-all.sh like below:
$ ./man/md2man-all.sh -q
./man/md2man-all.sh: line 21: go-md2man: command not found
So fix it.
Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
28 lines
548 B
Bash
Executable File
28 lines
548 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# get into this script's directory
|
|
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
|
|
|
[ "$1" = '-q' ] || {
|
|
set -x
|
|
pwd
|
|
}
|
|
|
|
if ! ( which go-md2man &>/dev/null ); then
|
|
echo "To install man pages, please install 'go-md2man'."
|
|
exit 0
|
|
fi
|
|
|
|
for FILE in *.md; do
|
|
base="$(basename "$FILE")"
|
|
name="${base%.md}"
|
|
num="${name##*.}"
|
|
if [ -z "$num" -o "$name" = "$num" ]; then
|
|
# skip files that aren't of the format xxxx.N.md (like README.md)
|
|
continue
|
|
fi
|
|
mkdir -p "./man${num}"
|
|
go-md2man -in "$FILE" -out "./man${num}/${name}"
|
|
done
|