summaryrefslogtreecommitdiff
path: root/baserock_webserver/generate-docs.baserock.org
blob: 581ab5de05d5e7260100d37155a203787560439b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
#
# Copyright (C) 2016  Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program.  If not, see <http://www.gnu.org/licenses/>.


# Generator script for docs.baserock.org website.
#
# This can be run as a cron job or Git post-receive hook, to get auto-updating
# documentation built from Git repos.


set -e

cd ~
if [ ! -d spec.git ]; then
    git clone git://git.baserock.org/baserock/baserock/spec.git spec.git
    cd spec.git
else
    cd spec.git
    git checkout master
    git pull origin master
fi

~/.local/bin/mkdocs build