summaryrefslogtreecommitdiff
path: root/doc/update_website
diff options
context:
space:
mode:
authorGard Spreemann <gspr@nonempty.org>2019-07-17 15:34:45 +0200
committerGard Spreemann <gspr@nonempty.org>2019-07-17 15:34:45 +0200
commit7dafdd4535f44a6946592f22ead74bb6dbec8952 (patch)
tree4723ffb85d6d18fb589db65eb08771433a735e87 /doc/update_website
parentd1f42d4be4676d76242e4148c06004cbf0b7cefa (diff)
parent34bd30415dd93a2425ce566627e24ee9483ada3e (diff)
Merge tag '0.6.0' into debian/sid
Diffstat (limited to 'doc/update_website')
-rwxr-xr-xdoc/update_website12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/update_website b/doc/update_website
new file mode 100755
index 0000000..dc73f49
--- /dev/null
+++ b/doc/update_website
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+git checkout gh-pages
+rc=$?
+if [[ $rc != 0 ]] ; then
+ exit $rc
+fi
+cp -r _build/html/*.html _build/html/*.js _build/html/_static _build/html/_modules ../
+echo "html files copied"
+git commit -am"website update"
+git push
+git checkout master