Skip to content

Commit

Permalink
Fixed typo in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash committed Oct 1, 2013
1 parent 1947520 commit fae9462
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,11 @@ doctest:

gh-pages:
git checkout gh-pages
rm -rf build _sources _static
rm -rf _build _sources _static
git checkout master $(GH_PAGES_SOURCES)
git reset HEAD
make html
mv -fv build/html/* ./
rm -rf $(GH_PAGES_SOURCES) build
mv -fv _build/html/* ./
rm -rf $(GH_PAGES_SOURCES) _build
git add -A
git ci -m "Generated gh-pages for `git log master -1 --pretty=short --abbrev-commit`" && git push origin gh-pages ; git checkout master

0 comments on commit fae9462

Please sign in to comment.