Files
deb-python-falcon/publish-website.sh
2014-01-06 12:03:56 -06:00

15 lines
244 B
Bash
Executable File

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