aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-07-28 00:41:40 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-07-28 00:41:40 +0100
commit9aba276757243c426d5e18536779f1bf277b4c91 (patch)
tree1bfb5756c82b8e980ee4c031be1a94770d7910e6 /scripts
parentdf6b5072ebd36dbc488eb610877e7a50441df388 (diff)
downloadYAGE-9aba276757243c426d5e18536779f1bf277b4c91.tar.gz
YAGE-9aba276757243c426d5e18536779f1bf277b4c91.zip
Adding update_docs script and updated documentation
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update_docs13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/update_docs b/scripts/update_docs
new file mode 100755
index 00000000..6864d6d3
--- /dev/null
+++ b/scripts/update_docs
@@ -0,0 +1,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