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.
12 lines
343 B
12 lines
343 B
#!/bin/sh |
|
cd /tmp |
|
if [ ! -d "pyircbot" ] ; then |
|
mkdir pyircbot |
|
wget http://gitlab.davepedu.com/dave/pyircbot3/repository/archive.tar.gz?ref=master -O pyircbot.tgz |
|
tar zxvf pyircbot.tgz -C pyircbot/ --strip-components=1 |
|
fi |
|
cd pyircbot/docs/ |
|
make html |
|
rm -rf /tmp/docs/* |
|
cp -r _build/html/* /tmp/docs/ |
|
chown -R 1000:1000 /tmp/docs/*
|
|
|