3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 09:19:23 +01:00
PyLink/docs/technical/doxygen.sh

16 lines
366 B
Bash
Raw Normal View History

2016-07-24 04:42:17 +02:00
#!/bin/bash
# Runs Doxygen on PyLink.
# Note: to change the outpuit path, doxygen.conf also has to be updated too!
OUTDIR="../../../pylink.github.io"
if [ ! -d "$OUTDIR" ]; then
echo "Git clone https://github.com/PyLink/pylink.github.io to $OUTDIR and then rerun this script."
exit 1
fi
CURDIR="$(pwd)"
doxygen doxygen.conf
cp -R html/* "$OUTDIR"
rm -r "html/"