aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/update_docs
blob: 6864d6d3658989579e8100d58278dbcdbcd231e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

doxygen ./docs/Doxyfile
git clone -b gh-pages git@github.com:ymherklotz/YAGE
cd YAGE/
git rm -rf *
mv ../html/* .
rm -rf ../html
git add -A
git commit -a -m 'Updating docs'
git push origin gh-pages
cd ..
rm -rf YAGE