summaryrefslogtreecommitdiff
path: root/tools/docs-push-gh-pages
diff options
context:
space:
mode:
authorOleg Morozenkov <m@oleg.rocks>2019-12-05 02:16:54 +0300
committerOleg Morozenkov <m@oleg.rocks>2019-12-05 02:16:54 +0300
commit30c3ae5dbaa90afd9b30071a7f22bc15e54ec09f (patch)
treed11ea0e0eeba81bd8e73d056a28329419963da9e /tools/docs-push-gh-pages
parent302d64182a86a4ea53a2f6133b5218ef50157bfa (diff)
Update tools scripts
Diffstat (limited to 'tools/docs-push-gh-pages')
-rwxr-xr-xtools/docs-push-gh-pages5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/docs-push-gh-pages b/tools/docs-push-gh-pages
index 36e80f8..4d07dbd 100755
--- a/tools/docs-push-gh-pages
+++ b/tools/docs-push-gh-pages
@@ -1,13 +1,14 @@
#!/bin/bash
+set -e
./docs-generate
cd ..
git checkout gh-pages
-find . -maxdepth 1 -not -name "docs" -not -name ".git" -not -name "tools" -print0 | xargs -0 rm -r
+find . -maxdepth 1 -not -name "docs" -not -name ".git" -not -name "tools" -print0 | xargs -0 rm -r || true
mv docs/* .
mv docs/.nojekyll .
rmdir docs
-rm -r tools/*
+rm -r tools/* || true
git add -A
git commit -m "Updated docs $(date)"
git push origin gh-pages