From e404a1a96d125dfcb11d42f2725820c9d5b366fc Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 7 Aug 2015 20:20:30 -0700 Subject: Script to update gh-pages from master --- scripts/update-website | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 scripts/update-website (limited to 'scripts') diff --git a/scripts/update-website b/scripts/update-website new file mode 100755 index 00000000..4578a051 --- /dev/null +++ b/scripts/update-website @@ -0,0 +1,27 @@ +#!/bin/sh + +# This script builds the website from the docs directory of +# the current branch and copies it over to the gh-pages +# branch. + +set -eu +set -o xtrace + +# build website +scriptdir=`dirname "$0"` +cd "$scriptdir"/../docs +rm -rf output +rake build +cd .. + +# copy to /tmp +tmpdir=$(mktemp -d -t jq.website.XXXXXXXXXX) +cp -r docs/output/* "$tmpdir" + +# copy to gh-pages +git checkout gh-pages +cp -r "$tmpdir"/* . + +# clean up +rm -rf "$tmpdir" +echo SUCCESS -- cgit v1.2.3