Includes Changelog

This commit is contained in:
Manuel Ebert 2012-04-16 14:52:42 +02:00
parent 50d60b380b
commit 912f219b44

View file

@ -1,8 +1,10 @@
#! /bin/bash #! /bin/bash
git checkout master README.md git checkout master README.md
markdown2 README.md > tmp git checkout master CHANGELOG.md
cat templates/header.html tmp templates/footer.html > index.html markdown2 README.md > tmp_readme
rm tmp markdown2 CHANGELOG.md > tmp_log
cat templates/header.html tmp_readme tmp_log templates/footer.html > index.html
rm tmp_readme tmp_log
git add index.html git add index.html
git commit -m "Updated Readme from master" git commit -m "Updated Readme from master"
git push -u origin gh-pages git push -u origin gh-pages