mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
Script to update gh-pages from master
This commit is contained in:
27
scripts/update-website
Executable file
27
scripts/update-website
Executable file
@@ -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
|
Reference in New Issue
Block a user