blob: 0aec6733b8ed7eff3e4d129899ef95edf082db9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
set -e
#!/bin/bash
set -e
set -x
# we need a name and an email
#git config --global user.name build.automotivelinux.org
#git config --global user.email jenkins@automotivelinux.org
git config --global user.name build.automotivelinux.org
git config --global user.email jenkins@automotivelinux.org
rm -rf docs-webtemplate || true
wget https://raw.githubusercontent.com/automotive-grade-linux/docs-webtemplate/master-next/setupdocs.sh
mkdir docs-webtemplate
bash -x setupdocs.sh --directory=docs-webtemplate --webtemplate-ref=master-next --doctools-ref=master-next --baseurl=/next
# Todo --baseurl=/upload/ci/20018
cd docs-webtemplate
make build
|