Fixes logo path on docs and introduces makefile

This commit is contained in:
Manuel Ebert 2013-11-05 11:59:32 -08:00
parent bb5f8141ee
commit bc9b8600a7
2 changed files with 20 additions and 1 deletions

19
Makefile Normal file
View file

@ -0,0 +1,19 @@
# A Makefile for commands I run frequently:
# Build GitHub Page from docs
gh_pages:
git checkout gh-pages ; \
git checkout master docs ; \
git checkout master jrnl ; \
cd docs ; \
make html ; \
cd .. ; \
cp -r docs/_build/html/* . ; \
git add * ; \
git commit -m "Updated docs from master" ; \
git push -u origin gh-pages ; \
git checkout master
# Upload to pipy
dist:
python setup.py publish