From 0bebd0f23fc57b493bd5ea15f64bcc4e347b12f7 Mon Sep 17 00:00:00 2001 From: Kurt Griffiths Date: Mon, 11 Feb 2013 14:26:21 -0500 Subject: [PATCH] chore: Publish website script --- publish-website.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 publish-website.sh diff --git a/publish-website.sh b/publish-website.sh new file mode 100755 index 0000000..70b743d --- /dev/null +++ b/publish-website.sh @@ -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