diff options
author | Oleg Morozenkov <m@oleg.rocks> | 2019-12-05 02:16:54 +0300 |
---|---|---|
committer | Oleg Morozenkov <m@oleg.rocks> | 2019-12-05 02:16:54 +0300 |
commit | 30c3ae5dbaa90afd9b30071a7f22bc15e54ec09f (patch) | |
tree | d11ea0e0eeba81bd8e73d056a28329419963da9e /tools/docs-push-gh-pages | |
parent | 302d64182a86a4ea53a2f6133b5218ef50157bfa (diff) |
Update tools scripts
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 |