chore: Publish website script

This commit is contained in:
Kurt Griffiths
2013-02-11 14:26:21 -05:00
parent 2cddc85948
commit 0bebd0f23f

11
publish-website.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
git checkout gh-pages
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