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:
parent
3ab5b1e616
commit
24dfcbfac9
1 changed files with 12 additions and 0 deletions
12
contrib/update_docs.sh
Executable file
12
contrib/update_docs.sh
Executable 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
|
Loading…
Add table
Reference in a new issue