diff options
Diffstat (limited to 'tools/docs-push-gh-pages')
-rwxr-xr-x | tools/docs-push-gh-pages | 5 |
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 |