blob: 4ed69004dca55bded8a180c742a2feb0c854c8c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/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
rm -f *.1 *.2 *.8
if [ -e /usr/bin/ronn ]; then
/usr/bin/ronn -r zerotier-cli.1.md
/usr/bin/ronn -r zerotier-idtool.1.md
/usr/bin/ronn -r zerotier-one.8.md
else
if [ ! -f node_modules/marked-man/bin/marked-man ]; then
echo 'Installing MarkDown to ROFF converter...'
npm install marked-man
echo
fi
NODE=/usr/bin/node
if [ -e /usr/bin/nodejs ]; then
NODE=/usr/bin/nodejs
fi
$NODE node_modules/marked-man/bin/marked-man zerotier-cli.1.md >zerotier-cli.1
$NODE node_modules/marked-man/bin/marked-man zerotier-idtool.1.md >zerotier-idtool.1
$NODE node_modules/marked-man/bin/marked-man zerotier-one.8.md >zerotier-one.8
fi
exit 0
|