1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

added small script do automatically updte Doxygen documentation

This commit is contained in:
Steffen Vogel 2015-03-23 17:54:37 +01:00
parent 3ab5b1e616
commit 24dfcbfac9

12
contrib/update_docs.sh Executable file
View file

@ -0,0 +1,12 @@
#/bin/bash
cd $( cd "$( dirname "$0" )/.." && pwd )
LASTREV=$(git rev-parse HEAD)
git pull --all
NEWREV=$(git rev-parse HEAD)
if [ "$LASTREV" != "$NEWREV" ]; then
echo "There's a new version. Running doxygen"
doxygen
fi