You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
593 B

#!/bin/bash
export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin
if [ ! -f zerotier-cli.1.md ]; then
echo 'This script must be run from the doc/ subfolder of the ZeroTier tree.'
fi
10 years ago
if [ ! -f node_modules/marked-man/bin/marked-man ]; then
echo 'Installing MarkDown to ROFF converter...'
10 years ago
npm install marked-man
echo
fi
10 years ago
rm -f *.1 *.8
10 years ago
node_modules/marked-man/bin/marked-man zerotier-cli.1.md >zerotier-cli.1
10 years ago
node_modules/marked-man/bin/marked-man zerotier-idtool.1.md >zerotier-idtool.1
10 years ago
node_modules/marked-man/bin/marked-man zerotier-one.8.md >zerotier-one.8
exit 0