mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
4683e83287
This should prevent accidentally comitting docs in master
15 lines
356 B
Bash
15 lines
356 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
python setup.py gen docs
|
|
rm -rf /tmp/docs
|
|
mv docs/ /tmp/docs
|
|
git checkout gh-pages
|
|
# there's probably better ways but we know none has spaces
|
|
rm -rf $(ls /tmp/docs)
|
|
mv /tmp/docs/* .
|
|
git add constructors/ types/ methods/ index.html js/search.js css/ img/
|
|
git commit --amend -m "Update documentation"
|
|
git push --force
|
|
git checkout master
|