aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/update_docs
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-08-02 09:53:13 +0100
committerGitHub <noreply@github.com>2017-08-02 09:53:13 +0100
commit30461c89fd53e14bb9f5a83eaf6d72040931b62a (patch)
tree3303e22526d346030fa78dabcebdcfd0a3f11f1f /scripts/update_docs
parenta1fc39d49e442fcc756091ee028ff33bdd9c518a (diff)
parent489c3550c3694ffc5f67c1527a3f021a01c8bbfc (diff)
downloadYAGE-30461c89fd53e14bb9f5a83eaf6d72040931b62a.tar.gz
YAGE-30461c89fd53e14bb9f5a83eaf6d72040931b62a.zip
Merge pull request #2 from ymherklotz/develop
Merging
Diffstat (limited to 'scripts/update_docs')
-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