whyblocked/build_manpage.sh

11 lines
291 B
Bash
Raw Permalink Normal View History

2019-01-20 23:31:58 +01:00
#!/bin/sh
2019-01-21 00:01:29 +01:00
if [ -n "${1}" ]; then
2019-01-20 23:31:58 +01:00
dir="$(dirname ${0})"
cp -vf ${dir}/whyblocked.1.adoc .
sed -Ei "s/(Revision: +)[0-9]+\.[0-9]\.[0-9]/\1${1}/" whyblocked.1.adoc
a2x --doctype manpage --format manpage --no-xmllint whyblocked.1.adoc
else
echo "usage: ${0} VERSION" >&2
fi