Files
deb-python-falcon/publish-website.sh
2013-02-13 17:47:23 -05:00

13 lines
229 B
Bash
Executable File

#!/usr/bin/env bash
git checkout gh-pages
rm -rf css
rm -rf img
rm -rf js
cp -r ../falconframework.org/* .
mv index.min.html index.html
git add *
git commit -m 'doc: Publish website'
git push origin gh-pages
git checkout master